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

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

javascript - Get parameter of GET request -

javascript - Twitter Bootstrap - how to add some more margin between tooltip popup and element -