Firebase安全性,只有auth / admin可以删除?

我必须错过明显的东西?
如何设置Firebase安全规则,以便:

  • 任何用户只能读取和创建新数据
  • admin / auth也可以删除数据
  • 我无法在文档中的任何地方看到对相同目录具有多个".write"规则的能力......

        {
         "rules": {
            ".read": true,
    
            // this only occurs if "auth === null" otherwise should be full access.
            ".write": "!data.exists() && newData.exists()"
          }
        }
    
    链接地址: http://www.djcxy.com/p/84211.html

    上一篇: Firebase security, only auth/admin can delete?

    下一篇: Does Firebase create accounts for all authentication types?