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

Receive udp packets in android gstreamer -

php - Extract Text from HTTP referer -

authentication - Mongodb revoke acccess to connect test database -