我在我的云防火墙数据库中有这些规则。
service cloud.firestore {
match /databases/{database}/documents {
// Collection named "users", document named after the userId
match /users/{userId} {
allow read, write: if request.auth.uid == userId;
}
}
}
如何使用这些规则将数据添加到数据库中?我想在网上使用它。
当前,当我尝试使用以下代码插入