在Firebase中设置管理员规则

时间:2019-01-08 15:10:08

标签: android database firebase-realtime-database firebase-authentication

嗨,我正在尝试建立一个数据库,客户可以在该数据库中在线发送投诉,某些主管可以对其进行审查。我使用的数据库是firebase,

作为数据库所有者,我有权检查数据库的内容,但是如何让该主管在我不在照片的情况下检查它们?

我听说它被称为“设置仪表板”之类的东西,但在搜索时找不到与Android相关的任何东西。

1 个答案:

答案 0 :(得分:1)

我认为这就是您想要的。

// These rules grant access to a node matching the authenticated
// user's ID from the Firebase auth
token {
   "rules": { 
     "users": {
        "$uid": { 
           ".read": "$uid === auth.uid",
            ".write":"$uid === auth.uid" }
     }
    } 
   }

有关更多信息,请查看下面的链接 https://firebase.google.com/docs/database/security/quickstart