Firebase: export email accounts and user passwords

I use email / password authentication for my Firebase.

It seems to me that I am moving to a different backend, and I wonder if there is any way to export user / password email hashes so that I can authenticate them outside of Firebase?

I also need to know the hashing algorithm.

+5
source share
1 answer

You can use firebase-cli by writing firebase auth:export save_file.csv --format=csv or firebase auth:export save_file.json --format=json

You can find more detailed information on the firebase documentation page: https://firebase.google.com/docs/cli/auth#authexport

+6
source

Source: https://habr.com/ru/post/1206416/


All Articles