2

上传工作正常。

尝试上传具有相同名称的文件(打算替换它)时,我收到 403 身份验证错误。

"Firebase Storage: User does not have permission to access ..."

我已将存储权限设置为完全访问:

match /{allPaths=**} {
  allow read, write: if true;
}
4

2 回答 2

3

问题是我的规则是错误的。

改变规则解决了问题

match /{allPaths=**} {
  allow read, write;
}
于 2016-06-09T14:09:31.417 回答
0

我发现这个链接可能会有所帮助。

https://github.com/firebase/quickstart-js/issues/6

于 2016-06-09T14:12:20.940 回答