Firebase - what is the minimal security rules for the tables in order to protect your data e.g. from unauthenticated users / hackers -


firebase - minimal security rules tables in order protect data e.g. unauthenticated users / hackers

i go live , have tables set true read , write.

thank you.

{   "rules": {           // authenticated user can read           ".read": "auth != null",           // authenticated user can write           ".write": "auth != null",      } } 

Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -