Skip to main content

Posts

Showing posts with the label Firebase Security Rules Setting

How To Implements Security in Firebase?

The Security in Firebase is handled by security rules in the setting the JSON and it can be found when we click on Database inside the side menu and then RULES in tab bar. Read and Write - {    "rules" : {       "users" : {          "$uid" : {             ".write" : "$uid === auth.uid" ,             ".read" : true          }               }    } } Validate - {    "rules" : {       "todo" : {          ".validate" : "yourData.isString()"       }         } } Stayed Informed - Firebase Tutorial for Android and IOS I ho...