I use a simple combination of email and password to authenticate users in Firebase. Is there a way to publish user registration information, such as the date the email was created or the date the account was created, using the standard REST API or any other library (preferably React.js with ReactFire or Re-base)?
For example, I want to be able to get a list of all registered users or pass the UID to the request and get the email address or creation date. I know that I can do this by storing the necessary user data in my user data store under the user UID, for example, but I am looking for access to the source data, and not to my own copy. I also understand that exposing such details may not be the recommended practice, as this poses a security risk, but I still want to explore the possibility of achieving this.
source
share