How does the reset password flow work on kotlin auth?
I can't seem to figure out how to implement the reset password flow on kotlin
I'm following the docs with the two step implementation:
I'm following the docs with the two step implementation:
supabase.auth.resetPasswordForEmail(email, redirecturl)- when it deeplinks back into my app handle it with
SupabaseClient.client.handleDeeplinks(intent)
supabase.auth.updateUser() function and then let the user log in with the new password. Is there any way to check if the user is in a recovery state on kotlin?