Making firebase storage public for reading and writing on android

后端 未结 6 1814
梦如初夏
梦如初夏 2021-02-07 00:34

I am new to firebase storage. Can anyone tell me how to make the storage files public for reading and writing?. The default code provided by firebase is given below. What change

6条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-07 01:24

    Just Removing

    if request.auth != null;

    service firebase.storage {
      match /b/image-view-b1cf5.appspot.com/o {
        match /{allPaths=**} {
          // Allow access by all users
          allow read, write;
        }
      }
    }
    

    Happy Coding

提交回复
热议问题