如何覆盖 Firebase 存储上的文件?
how to overwrite a file on Firebase Storage?
上传正常。
尝试上传同名文件(打算替换它)时出现 403 身份验证错误。
"Firebase Storage: User does not have permission to access ..."
我已将存储权限设置为完全访问权限:
match /{allPaths=**} {
allow read, write: if true;
}
问题是我的规则有误。
更改规则解决了问题
match /{allPaths=**} {
allow read, write;
}
我发现这个 link 可能有帮助。
上传正常。
尝试上传同名文件(打算替换它)时出现 403 身份验证错误。
"Firebase Storage: User does not have permission to access ..."
我已将存储权限设置为完全访问权限:
match /{allPaths=**} {
allow read, write: if true;
}
问题是我的规则有误。
更改规则解决了问题
match /{allPaths=**} {
allow read, write;
}
我发现这个 link 可能有帮助。