上传效果很好。
尝试上传具有相同名称的文件(打算替换它)时,出现403认证错误。
"Firebase Storage: User does not have permission to access ..."
我已将存储权限设置为完全访问权限:
match /{allPaths=**} {
allow read, write: if true;
}
最佳答案
问题是我的规则是错误的。
更改规则解决了问题
match /{allPaths=**} {
allow read, write;
}