Answers for "FirebaseException ([cloud_firestore/permission-denied] The caller does not have permission to execute the specified operation.)"

0

FirebaseException ([cloud_firestore/permission-denied] The caller does not have permission to execute the specified operation.)

rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
 match /{document=**} {
  allow read, write: if request.auth != null;
  }
 }
}
Posted by: Guest on September-10-2021

Code answers related to "FirebaseException ([cloud_firestore/permission-denied] The caller does not have permission to execute the specified operation.)"

Browse Popular Code Answers by Language