John Thomas
John Thomas

Reputation: 29

How to secure firebase authentication

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.

Upvotes: 0

Views: 221

Answers (1)

Renaud Tarnec
Renaud Tarnec

Reputation: 83068

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.

Upvotes: 1

Related Questions