【发布时间】:2020-08-15 11:46:20
【问题描述】:
这是我的规则:
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{country}/{type}/{allPaths=**} {
allow read, write;
}
}
}
出于某种原因,我可以在此路径中读写:child(Test).child("Image.jpg"),但不应该这样。我应该只能在这条路径上读写child(Test).child(Test2).child("Image.jpg")
Test 和 Test2 都是变量。
我错过了什么吗?
【问题讨论】:
标签: android firebase firebase-storage firebase-security