where do I get SUPABASE URL from
# help
n
where do I get SUPABASE URL from
n
Hello @nikivi! This thread has been automatically created from your message in #843999948717555735 a ``few seconds ago``. Pinging @User so that they see this as well! 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.
n
g
Your settings API page should have the info you need.
n
nikivi (2022-04-15)
n
thank you
Copy code
// Auth
  user, err := supabaseClient.Auth.SignIn(supabase.UserCredentials{
    email: "example@example.com",
    password: "password"
  })
  if err != nil {
    panic(err)
  }
in this code it wants to auth with username and pass
but in web ui, all I see is the email and user id
its just confusing, do I need to create new username
ok I can send password recovery I see
g
I'm not going to the library you linked, but email password implies you have set up a new user with SignUp, or some other method
n
but all it just leads to this
wait
I can't just create users?
I have to invite them
im so confused
I know that for any app you need to build your own auth system
table users etc.
but for this library
I can't create user
I can't reset password for my current user
I only have one email to use 😐
magic link is also broken
goes to localhost for some reason
so im forced to do 5 min email and make new acc right?
or new user
g
Normally you need to use your app signup process for simple testing. You can create users with https://supabase.com/docs/reference/javascript/auth-api-createuser but this is probably beyond the point you are at, and you need to make that call in a safe environment. There are other ways to create users with SQL statements, but also take skill in understanding the underlying auth tables and code.