User does not have permission to access this object . Firebase storage android

后端 未结 10 1704
甜味超标
甜味超标 2020-12-02 20:12

I am new to firebase storage. Just so I could learn it, I made a simple app that has a button and an ImageView. When I click on the button, an image (from

10条回答
  •  清歌不尽
    2020-12-02 20:52

    The issue is with your firebase storage rules. Change it to

    rules_version = '2';
    service firebase.storage {
      match /b/{bucket}/o {
        match /{allPaths=**} {
          allow read, write: if request.auth != null;
        }
      }
    }
    

    Make sure the if request.auth != null

提交回复
热议问题