skip to Main Content

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


  1. Is there a way to set a password for the user after signing in with signInWithEmailLink method?

    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.

    Login or Signup to reply.
  2. 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 with signInWithEmailLink, it loses its purpose

    you may be looking to verify the user’s email which you can get with sendEmailVerification

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search