Security Rules
Security Rules
Firebase Storage
Review Firestore security rules
The basics
// Only authenticated users can read or write to the bucket
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}Match blocks
Rule types
Wildcard variables
Request variables
Resource variables
Read the docs
Last updated