I am developing a proof of concept application and therefore my security requirements are low. Therefore, I changed the rules for access to public access:
{
"rules": {
".read": true,
".write": true
}
}
This works as expected. The problem is that after a few minutes the rules will return to default values (authorization is required), and I get the error message "Error: allowed in / in case: the client does not have permission to access the required data."
Why is this so?
Thank.
source
share