Firebase Storage | A Guide for Beginners

through firebase storage I am storing audio files. When I go to call them from my app it always plays the last audio file I have stored. But if I open the file from Firebase Storage it plays the correct audio. Can you help me please? Thank you

hello
help , after uploading image to fire base storage ,return error
[ User does not have permission to access this object ]
my rules :
service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow read allow write; } } }
thanks for helping me. :pray:

Set them like this

rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write;
    }
  }
}


1 Like

Read This I created a topic Regarding Same Issue. Here it is solved

I got also this error and my rules are:

rules_version = ‘2’;
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read;
allow write;
}
}
}

How could I solve this problem?
Thanks

If i set upload for user, how can i setup block to get uploader?