📌  相关文章
📜  调用者没有权限firestore - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:08.233000             🧑  作者: Mango

代码示例1
> service cloud.firestore {   match /databases/{database}/documents {
>     match /{document=**} {
>       allow read: if auth != null;
>       allow write: if auth != null;
>     }   } }