TinyTiger
TinyTiger

Reputation: 2103

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

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.

Upvotes: 0

Views: 121

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599661

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.

Upvotes: 1

Related Questions