我在我的应用程序中使用firebase身份验证,但我很困惑如何编写规则?,以便每个用户只在应用程序中看到他的数据并更新他的数据。
就像我在文档Map<String,Object>
中有一些sampleData
(hashmap),而在集合中是information
。我阅读了指南,但我如何编辑规则?
我试过了
service firebase.storage
{match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth!=null;
}
}
}
但没有工作。
答案 0 :(得分:0)
请试试这个: if request.auth == null;