Uncaught (in promise): FirebaseError: [code=permission-denied]: Missing or insufficient permissions. FirebaseError: Missing or insufficient permissions. code example

Example 1: Uncaught (in promise) FirebaseError: Missing or insufficient permissions.

When you look at your Firestore rules, they should match:

service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read;
      allow write: if false;
    }
  }
}
If you do not allow read, you may see this issue in the client.

Example 2: Uncaught Error in onSnapshot: FirebaseError: Missing or insufficient permissions.

service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read;
      allow write: if false;
    }
  }
}

Tags:

Misc Example