gpt4 book ai didi

firebase - Firebase存储中没有 token 的访问url

转载 作者:行者123 更新时间:2023-12-03 06:36:14 25 4
gpt4 key购买 nike

我有一个 Firebase 存储下载网址,例如

https://firebasestorage.googleapis.com/v0/b/siren-5eee7.appspot.com/o/profile%2FC6jNlR0F4cZBPv7wF0REWUNVor33?alt=media&token=63a9130e-2ba6-4f38-ac3f-2231c54a1043

如何在没有 token 参数的情况下访问该 url?

例如,如果我在没有 token 的情况下访问上述网址,则会出现 403 错误,显示权限被拒绝。

我的 Firebase 存储安全规则如下:

service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}

此文件位于 /etc 文件中。我该怎么做?

最佳答案

尝试更改规则:

service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read;
allow write: if request.auth != null;
}
}
}

关于firebase - Firebase存储中没有 token 的访问url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46153828/

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