Is there a way to set a password for the user after signing in with signInWithEmailLink
method?
I didn’t find anything about this case
Any help would be appreciated
Is there a way to set a password for the user after signing in with signInWithEmailLink
method?
I didn’t find anything about this case
Any help would be appreciated
2
Answers
If you’re looking for a way to change the password right after the user has signed in, that means that you’re looking for an update password operation.
firebase’s
signInWithEmailLink
function’s actual purpose is to provide a passwordless sign-in/up method. so if you set a password for your user after signing in withsignInWithEmailLink
, it loses its purposeyou may be looking to verify the user’s email which you can get with sendEmailVerification