Answer the question
In order to leave comments, you need to log in
Firebase Storage Rules. How to give public access to only one folder?
1. Tell me, is there an article or documentation in RUSSIAN on writing access rules for Firebase Storage?
2. By default, in the rules, access is only for registered users:
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question