Home > Back-end >  How to secure firebase authentication
How to secure firebase authentication

Time:12-14

I've been building my app via firebase and things are going pretty well. Recently I was prompted to add security rules to my real time database. Although I understand what to do, I noticed that there is no rules tab for my authentication section for firebase. Are there any steps I should take to secure my authentication information, besides password management. Manipulating users' data would be bad but deleting my authentication and thus who all has made an account would be catastrophic.

CodePudding user response:

Only the projects members of your Firebase Project, with the corresponding rights, can access the Authentication console of your Project.

An end user of your Firebase Project, i.e. a user declared in the Authentication service, can only interact with his own account through the Client SDKs, e.g. modify his password or update other properties of his own profile.

  • Related