【发布时间】:2018-06-24 14:57:06
【问题描述】:
这些是我当前的安全规则:
service cloud.firestore {
match /databases/{database}/documents {
match /tournaments/{tournament=**} {
allow update, delete: if request.auth.uid == resource.data.author;
allow create: if request.auth.uid != null;
allow read: if true;
}
}
}
一切正常,只有更新或删除因“缺少或权限不足”而不起作用
这是我的代码
mDocRef
.update(key, score)
.addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d(TAG, "DocumentSnapshot successfully updated!");
}
})
.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.w(TAG, "Error updating document", e);
}
});
mDocRef 引用路径为“tournaments/tournamentID/aColletion/aDocument”的文档
这里是创建 mDocRef 的代码:
mTournamentDocRef = mTournamentColRef.document();
mDocRef = mTournamentDocRef.collection("aCollection").document();
注意事项:
- 用户在整个过程中通过firebase登录
- 我尝试使用 .where("author", "==", user.uid) 但出现“无法解析方法”错误
感谢您的帮助!
【问题讨论】:
标签: android firebase firebase-authentication google-cloud-firestore firebase-security