Firebase Features

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 hope you are enjoying with this post! Please share with you friends. Thank you so much!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^