{
"rules": {
".read": "auth != null",
".write": "false"
}
}
We have firebase application where user is authenticated via AuthID. We are using REST API to get access to database. Is it possible to restrict number of reads in an hour for a user? Want to implement this in read rules
{
"rules": {
".read": "auth != null" && **??????**,
".write": "false"
}
}