我一直收到此错误:
Adding Post Error: Missing or insufficient permissions.
这些是我当前的权限,任何人都可以执行任何操作(这并不理想,但我只是在测试)。
service cloud.firestore {
match /databases/{database}/documents {
match /Posts {
allow read, write;
}
}
}
我要运行的代码是:
func addPost (postID: String, date: NSDate, link: String, profileID: String, text: String) {
let db = Firestore.firestore()
let settings = db.settings
settings.areTimestampsInSnapshotsEnabled = true
db.settings = settings
db.collection("Posts").document(postID).setData(["Date": date, "Link": link, "ProfileID": profileID, "Text": text]) { (error) in
if (error != nil) {
print ("Adding Post Error: " + error!.localizedDescription)
} else {
print("Post added sucessfully")
}
}
}
为什么会收到此错误消息?截至2018年6月27日,我正在运行FirebaseFirestore
的最新版本。
答案 0 :(得分:2)
我很确定您需要指定允许用户访问集合中的文档,如documentation on basic read/write rules所示:
service cloud.firestore {
match /databases/{database}/documents {
match /Posts/{post} {
allow read, write;
}
}
}
上面的区别是{post}
中的match /Posts/{post}
。