英文:
403 Forbidden on local Google Cloud Storage call
问题
我正在使用默认的存储桶名称,但是每当我尝试写入文件时,都会收到一个"403 Forbidden"的错误。它试图写入一个名为"app_default_bucket"的存储桶。
这是通过file.DefaultBucketName(ctx)
检索到的默认存储桶。
本地文件权限似乎也没有问题。
在生产环境中,一切都按预期工作。
英文:
I am using the default bucket name, but whenever I try to write a file, I get a 403 Forbidden
. It tries to write to a bucket named: app_default_bucket
.
This is the default bucket retrieved by file.DefaultBucketName(ctx)
.
Local file permissions also seem to be okay.
In production everything works as expected.
答案1
得分: 1
它正在尝试写入您的远程Google Cloud Storage账户。看起来像是一个当前的错误。目前,您可能需要在您的账户上创建/重新配置默认存储桶。
英文:
It's trying to write on your remote Google Cloud Storage account. Seems like a current bug. For now you might have to create/reconfigure the default bucket on your account.
Using the client library with the dev server not working in Go
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论