如何覆盖Firebase存储上的文件?

时间:2016-06-09 14:02:07

标签: javascript firebase firebase-security firebase-storage

上传工作正常。

当尝试上传具有相同名称的文件(意图替换它)时,我收到403 auth错误。

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

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

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

2 个答案:

答案 0 :(得分:3)

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

更改规则解决了问题

match /{allPaths=**} {
  allow read, write;
}

答案 1 :(得分:0)

我发现此链接可能有所帮助。

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