Answers for "User does not have permission to access this object."

0

Firebase Storage: User does not have permission to access

# under storage on the firebase console and under rules edit the rule to become

rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write;
    }
  }
}
Posted by: Guest on September-20-2020

Code answers related to "User does not have permission to access this object."

Browse Popular Code Answers by Language