Firebase Storage Rules - access granted doesn't match rules
问题 Here is my rules : rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{country}/{type}/{allPaths=**} { allow read, write; } } } For some reason I can write and read in this path : child(Test).child("Image.jpg") but it shouldn't be. I should only be able to write and read in this path child(Test).child(Test2).child("Image.jpg") Test and Test2 are both variables. Am I missing something? 回答1: It's working as I would expect. In security rules version 2, recursive