https://supabase.com/ logo
hi everyone. Wasted lots of time to find the solut...
# help
c
hi everyone. Wasted lots of time to find the solution for this issue here when trying to login with email and supabase auth:
You must provide either an email, phone number, a third-party provider or OpenID Connect.
Can someone please point me into the right direction what I am doing wrong? I'm sending email and pw and have not found any setting I could change within supabase to solve this (using supabase cloud, not on-prem).
n
Hello @cyborg31! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
g
Can you show your signUp signIn call?
c
Copy code
login: async ({ email, password }) => {
    const { user, error } = await supabaseClient.auth.signIn({
      email: email,
      password,
    });

    if (error) {
      return Promise.reject(error);
    }

    if (user) {
      return Promise.resolve();
    }
  },
n
Thread was archived by @cyborg31. Anyone can send a message to unarchive it.
g
password: password?