Azure表存储返回404 API调用的资源未找到

发布于 2025-01-15 02:09:33 字数 312 浏览 1 评论 0原文

我想查询 Azure 中的表存储。我使用的网址如下:

https://SA-name.table.core.windows.net/table-name()

我得到回复:

ResourceNotFound The specified resource does not exist. RequestId:id Time:2022-03-18T07:25:18.4393071Z

我的问题是,如何将存储帐户中的表存储设置为公共访问?

I want to query table storage in Azure. Im using url like:

https://SA-name.table.core.windows.net/table-name()

and i get a response:

ResourceNotFound The specified resource does not exist. RequestId:id Time:2022-03-18T07:25:18.4393071Z

My question is, how to set Table storage in Storage account to public access?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2025-01-22 02:09:33

该错误可能是因为在创建 Azure 表时,访问级别默认为私有,不允许访问资源。


注意:只有 Azure Blob 或 Blob 容器才能获得未经身份验证的公共访问权限。

针对存储服务提出的每个请求都必须经过授权,
除非请求是针对已被访问的 blob 或容器资源
可供公众或签名访问。 Azure 存储支持
容器和 blob 的可选匿名公共读取访问权限。经过
默认情况下,绝不允许匿名访问您的数据。

您需要提供带有授权标头的请求,如下所述:authorize-with-shared-key

或者使用共享访问签名,如下所述:storageservices/delegate-使用共享访问签名进行访问

URI 的访问策略部分指示共享访问签名有效的时间段以及要授予用户的权限。 指定-访问策略

The error maybe because, while creating the Azure table, the Access level is private by default and not allowing to access the resources.

But
please Note: that Only Azure blobs or blob containers can be given unauthenticated public access.

Every request made against a storage service must be authorized,
unless the request is for a blob or container resource that has been
made available for public or signed access. Azure Storage supports
optional anonymous public read access for containers and blobs. By
default, anonymous access to your data is never permitted.

You need to provide request with Authorization header as explained here:authorize-with-shared-key

Or use a shared access signature, as described here:storageservices/delegate-access-with-shared-access-signature.

The access policy portion of the URI indicates the period of time over which the shared access signature is valid and the permissions to be granted to the user. specifying-the-access-policy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文