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 -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -