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 -
Validate -
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!
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!