在我的 Firebase 安全规则中,我希望匿名用户能够读取除一个字段 ( secret_field
) 之外的任何内容:
{
"rules": {
".read": true,
".write": "auth != null",
"stuff" : {
"$stuffID" : {
"secret_field" : {
".read" : "auth != null"
}
}
}
}
}
但是,在 Firebase 中,如果任何读取规则secret_field
评估为真,则授予读取访问secret field
权限。
有没有办法扭转这种行为?(如果任何读取规则secret_field
评估为假,则禁止读取访问)