Skip to content
Advertisement

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:

JavaScript

Already verify that at the time of the mail update it is taken from the edit text and converted to a string.

When testing on my device when I press the button to update, this appears in the Logcast:

JavaScript

Advertisement

Answer

If the task is unsuccessful, calling task.getException() will give you details about what went wrong. So you’ll want to show/log that with something like:

JavaScript

That usually is enough to troubleshoot.

Also see:

Advertisement