FirebaseStorage rules simply won’t work inspite of there being no typo
{ “path”: “/b/projectname.appspot.com/o/ibpxtIOZF8a21M51NvTgO4F3CyT2/backup.txt” “method”: “get” “auth”: { “uid”: “ibpxtIOZF8a21M51NvTgO4F3CyT2” “token”: { “sub”: “ibpxtIOZF8a21M51NvTgO4F3CyT2” “firebase”: { “sign_in_provider”: “google.com” } “email”: “<email>.com” “email_verified”: true “phone_number”: “” “name”: “” } } “time”: “2024-06-25T16:10:40.940Z” “params”: {} } The above is the request service firebase.storage { match /{bucketName}/{allPaths=**} { allow read, write: if request.auth.uid == bucketName; } } These are […]