我的终端返回以下错误:
PlatformException(PlatformException(执行getDocuments时出错,PERMISSION_DENIED:权限缺失或不足。,null)
已经检查了我的Google开发者控制台设置,但找不到解决方案。

最佳答案

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

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

10-01 23:48