gpt4 book ai didi

angular - Firebase Cloud Storage : permission denied. 在检索 downloadURL 时无法执行此操作 firebase

转载 作者:太空狗 更新时间:2023-10-29 17:23:27 24 4
gpt4 key购买 nike

我有一个功能可以成功将图像上传到我的云存储桶。

使用另一个函数我想获取图像的 URL 以在我的页面上显示它(使用 <img.../> )

getImageUrl(id: string) {
return this.storageRef.child('X/' + id ).getDownloadURL();

但是当我这样做时......我得到一个“无效”的 URL,当我复制该 URL 并转到它时,我收到以下消息:

{
"error": {
"code": 403,
"message": "Permission denied. Could not perform this operation"
}
}

我在某处读到这可能是因为 URL 中没有附加 token ,但我该如何启用它?

最佳答案

最近几天我一直在尝试了解 Firebase 存储规则,但我不知道为什么,但是当我像这样分开写入和读取规则时:

allow write: if request.auth != null && request.resource.size < 3 * 1024 * 1024;
allow read: if true;

代码运行良好,我可以使用 getDownloadURL() 进行写入和读取,但是当我像这样一起使用它们时:

allow read, write: if request.auth != null && request.resource.size < 3 * 1024 * 1024;

我遇到了和你一样的错误:

{
"error": {
"code": 403,
"message": "Permission denied. Could not perform this operation"
}

同时使用它们时我可以写入,但是当我尝试使用 getDownloadURL() 读取文件时,问题出现了。也许您可以像我提到的那样尝试分离规则,看看它是否有效。我希望它能解决你的问题。另外,不要忘记规则5 分钟后生效从您设置规则的那一刻起。祝你好运。

关于angular - Firebase Cloud Storage : permission denied. 在检索 downloadURL 时无法执行此操作 firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50432995/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com