我希望将firebase存储中的文件公开下载,而无需经过身份验证的用户。
默认规则是:
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
根据示例here,我将其更改为:
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read;
allow write: if request.auth != null;
}
}
}
但我得到以下奇怪的错误:
保存规则时出错 - 未定义参数 - 错误
任何人都知道会出现什么问题?