我正在尝试从官方firebase文档重做此示例:https://www.firebase.com/docs/security/quickstart.html> “让你的规则充满活力”。
这是我的数据:
这些是我的规则:
{
"rules": {
"messages": {
"$message": {
".read": true
}
}
}
}
当我现在尝试访问它们时,我收到错误:
Error: permission_denied: Client doesn't have permission to access the desired data.
我的问题不得不与“$ message” - 变量有关,因为如果我把“.read”:true放在“$ message”之上就可以了。
有人可以帮我解决这个问题吗?