Replies: 1 comment 3 replies
-
Hi @laurentS , here are our docs for magic links: https://supabase.io/docs/client/auth-signin#sign-in-with-magic-link Is there something missing from our docs perhaps? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is a followup to another discussion where a solution to signup with email only was suggested.
I was trying to do a password-less signup form after asking the user for some simple info (you know, trying to make it as low friction as possible ⏩ ) but there's an issue:
supabase.auth.signUp()
I get theuser_id
in the response, so I can immediately save info in the db that is linked to my new usersupabase.auth.signIn()
I'm not getting anything, so I can't do this, which makes me sad 😢It would be cool if the second option was possible. I can't see any major blockers, as the account is created in the backend, it would just need sending back the user data, probably via some different api call, maybe
auth.signUp
but without password? Am I missing something?Beta Was this translation helpful? Give feedback.
All reactions