November 2017
Beginner to intermediate
288 pages
7h 33m
English
Let' suppose we have a two-case scenario, the first one is open to the public and the second one will be available for authenticated users only, so let's see how we can secure them:
service firebase.storage { match /b/{bucket}/o { match /catgifs { match /{allGifs=**} { allow read; } match /secret/superfunny/{imageId} { allow read, write: if request.auth != null; } } } }
Read now
Unlock full access