How to delete user accounts in Firebase?

I have created several accounts as described here .

Is there a way to delete some user account?

Is there a way to see all existing user accounts?

+4
source share
1 answer

Deleting and listing user accounts created using Firebase Simple Login is again included in Forge and will display email / password associations, and will also allow deleting these associations.

Keep in mind that Firebase automatically saves only the hash combination of email addresses / password for easy login and saves it separately from the data in your Firebase, so you don’t have to worry about managing this data.

This means that if you save user account information in your Firebase tree, following a structure such as / users / $ user, then you can always access the data through Forge (access is located at https://<your-firebase>.firebaseio.com ) and view / change the data there. I will follow them as soon as we make progress in the Simple Login account management function. Thanks!

+4
source

All Articles