Retrieve user list from Firebase Authentication

How to get a list of users from Firebase Authentication? I can get the "current" user, but it is. Or should I first add users to the database and get the list from there?

+6
source share
2 answers

Unable to retrieve user list from Firebase Authentication.

Explained in this thread.

The only way to do this is to save the user in the database after registration.

+4
source

If you have a nodejs project, use firebase auth:export to export users from Firebase Auth. Users can be exported in csv or json format:

 firebase auth:export users.json --format=json --project projectname 
+3
source

All Articles