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

杰克·D

我的终端返回以下错误:

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

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

罗尼·B。

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

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

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章