Home > OS >  How to get the time of last password update for Firebase 9 User?
How to get the time of last password update for Firebase 9 User?

Time:02-25

I am using the Firebase 9 JavaScript Web SDK and I want to get the date/time of the last user password update.

Is that possible? And how is it done?

I can't find anything in the docs.

CodePudding user response:

I don't see any value indicating the last password change timestamp in the relevant Firebase objects that I know of (User, UserCredential, UserInfo, UserMetadata). So it seems this information is not available in the API, and you'll need to track it yourself.

  • Related