我的终端返回以下错误:
PlatformException(PlatformException(执行getDocuments时出错,PERMISSION_DENIED:权限缺失或不足。,null)
已经检查了我的Google开发控制台设置,但找不到解决方案。
答案 0 :(得分:1)
确保Firebase数据库上的安全规则允许您读取和写入数据。 即:
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write;
}
}
}