How to implement mobile forgot password screen? #20395
matart15
started this conversation in
Contribute to Supabase
Replies: 2 comments
-
On iOS I'm using that URL to start a session using the supabase library: Hope it helps. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You are using PKCE flowtype. In the link below look over the overview section. This gave me some trouble, and had to piece information together from many places. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I created screen to imput user's email.
As far as I found There is only one function to reset user's password. which is resetPasswordForEmail.
So I called it and it sent email to me.
I used deep linking to redirect back to my mobile app and open
NewPassword
screen.but it gives me url which returns
{"code": "12dd191b-cac0-4fa1-9bd1-3072 b3c6e0f7"}
But there is no info on how to use this
code
.For web app it seems like it sets session or something. then app can call
supabase.auth.update
, because nowsupabase.auth
have authenticated user.But for mobile
supabase.auth
have no authenticated user.Beta Was this translation helpful? Give feedback.
All reactions