cian
(Cian)
June 19, 2019, 10:28pm
3
Obfuscate your API and Tokens,
Read this.
Yes..
It will get hacked if you have a public read and write.
What should I do to secure the data in my Firebase Project?
Use Firebase Authentication 3.0 extension.
[image] [Free] Firebase Authentication V.3.0 (Update link) #ThunkableClassicExtensions
Hi, everybody! mirxtrem apps here, bringing you the lastest update for this extensions. Suscribe to my channel for tutorials: Firebase Tutorial in course New Features: Federated identity provider integration (to use with FacebookLogin and Go…
and
If you authenticate everyone with some login process you will need to experiment with this, however this “should” allow anyone authenticated to ready /posts/ . Only the user to write to /$uid/, and anyone authenticated to read and write chat.
“rules”: {
“posts”: {
“.read”: “auth !== null”,
“$uid”: {
“.write”: “$uid === auth.uid”
“chat”:{
“.read”: “auth !== null”,
“.write”: $auth !== null",
}
}
}
}
1 Like