Firebase Storage: User does not have permission to access '8D74160B-E073-4E1F-A2EC-683BBF76D89F.jpg'. (storage/unauthorized) code example
Example: 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;
}
}
}