上传工作正常。
当尝试上传具有相同名称的文件(意图替换它)时,我收到403 auth错误。
"Firebase Storage: User does not have permission to access ..."
我已将存储权限设置为完全访问权限:
match /{allPaths=**} {
allow read, write: if true;
}
答案 0 :(得分:3)
问题在于我的规则是错误的。
更改规则解决了问题
match /{allPaths=**} {
allow read, write;
}
答案 1 :(得分:0)
我发现此链接可能有所帮助。