skip to Main Content

Despite having changed my rules to the below, I am getting FirebaseError: Missing or insufficient permissions. Are there any other reasons firestore would return this error?

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {

    match /{document=**} {
      allow read, write;
    }
  }
}

Oddly, having checked other projects also live, I’m getting this error in ALL firebase projects, even ones I haven’t changed. I haven’t reached any quota limits and there’s nothing out of the ordinary in the firebase console. I have also tried accessing from a VPN to change my IP to no avail.

2

Answers


  1. firebase have access issues for authenticated issues for Firestore.
    now (15 Nov 2023 14:21 PST)

    Authentication issues :link

    Cloud Firestore issues : link

    Login or Signup to reply.
  2. It’s an ongoing issue on Google’s Firebase end:

    https://status.firebase.google.com/
    https://status.firebase.google.com/incidents/JH8hiSsfnSZHMdZqFTaC

    I don’t think you can do anything except wait for Google’s resolution.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search