PERMISSION_DENIED:权限不足或不足-颤振

时间:2020-07-03 01:22:19

标签: firebase flutter dart google-cloud-firestore firebase-security

我的终端返回以下错误:

PlatformException(PlatformException(执行getDocuments时出错,PERMISSION_DENIED:权限缺失或不足。,null)

已经检查了我的Google开发控制台设置,但找不到解决方案。

1 个答案:

答案 0 :(得分:1)

确保Firebase数据库上的安全规则允许您读取和写入数据。 即:

service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write;
    }
  }
}