I have a firebase database linked to an iOS app on which users have to be logged-in to read data from a specific node
So I edited my security rules :
"data": {
".read": "auth != null"
}
Nevertheless I would like to prevent users to download the whole node data via firebase CLI
I looked at the documentation https://firebase.google.com/docs/database/rest/auth but I am not sure I have properly understood what to do.
How can I disable data download over Firebase CLI ? Or is there a way to restrict downloading data by a specific user.uid or a given ip ?