Skip to content
Advertisement

Tag: firebase-authentication

Firebase Authentication: Update Email

I am using firebase to register my users, users can update their data but when updating the email they always send me the task unsuccessful response, and I verified that when updating the email it is well written. This is the code: Already verify that at the time of the mail update it is taken from the edit text and

Updating Firebase Authentication password using user.reauthenticate

To update a user’s password in Firebase Authentication you must re-authenticate : https://firebase.google.com/docs/reference/android/com/google/firebase/auth/FirebaseUser#reauthenticate(com.google.firebase.auth.AuthCredential) Yet this function does not seem to double check if the currentPassword is correct before actually re-authenticating. I believe this may be because Firebase does not require re-authentication until after a set period of time, and will bypass this if it is still within that timeframe. Here’s

Advertisement