Use Multiple Firebase Console in One App?

I have develop one app but you know firebase not secure in niotron anyone can access api key and URL for reason i use two database console one database read and write true and another read true but write false then i can use in one app.

Yes you can.

1 Like

Give me any suggestions for secure Firebase or Airtable because sensitivity information provide in our app…

// Only authenticated users can access/read write data

{
“rules”: {
“.read”: “auth != null”,
“.write”: “auth != null”
}
}

1 Like

It’s work in niotron because I have try but not work…

{
“rules”: {
“PROJECT_BUCKET”: {
“$uid”: {
“name”: {
“.read”: “auth != null”,
“.write”: “auth.uid == $uid”
},
“email”: {
“.read”: “auth.uid == $uid”,
“.write”: “auth.uid == $uid”
},
“android_version”: {
“.read”: “auth.uid == $uid”,
“.write”: “auth.uid == $uid”
}
}
}
}
}

Which App you develop

I am not try in niotron because I am new in niotron but I also try in kodular but not working.
Here it’s rules possible ?

Use MySQL database better than secure

I have no experience :sob: in MySQL

Check this video

1 Like

Thanks but it’s time consuming…

It’s work in niotron ?

Yes it’s work all platform

1 Like

How much User Data Manage of this plan ?

If per user consume 10 mb daily data …

This is not secure too

I still don’t understand much but maybe this can help you, explains a bit about the rules and security.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.