Azure 存储帐户 –> 共享访问签名错误

huangapple go评论55阅读模式
英文:

Azure Storage Account --> Shared Access Signature Error

问题

这在抱怨什么?

我不理解这个错误消息?

英文:

What is this complaining about?

I don't understand the error message?

Azure 存储帐户 –> 共享访问签名错误

答案1

得分: 0

我同意@Gaurav Mantri的观点,你忘了在SAS URL中包括blob容器名称,这导致了你遇到的错误。

我有一个存储帐户,其中包含一个名为**sri**的blob容器,就像下面这样:

Azure 存储帐户 –> 共享访问签名错误

当我尝试通过Azure Storage Explorer连接时,如果不在SAS URL中包括blob容器名称,我会遇到相同的错误,如下所示:

https://<storage_acc_name>.blob.core.windows.net/?sv=2022-11-02&amp;ss=bfqt&amp;srt=c&amp;sp=rwdlacupyx&amp;se=2023-06-13T13:17:29Z&amp;st=2023-06-13T05:17:29Z&amp;spr=https&amp;sig=xxxxxxxxxxxxxxxxx

Azure 存储帐户 –> 共享访问签名错误

要解决这个问题,你需要在SAS URL中包括blob容器名称,就像下面这样:

https://<storage_acc_name>.blob.core.windows.net/<blob_container_name>?sv=2022-11-02&amp;ss=bfqt&amp;srt=c&amp;sp=rwdlacupyx&amp;se=2023-06-13T13:17:29Z&amp;st=2023-06-13T05:17:29Z&amp;spr=https&amp;sig=xxxxxxxxxxxxxxxxx

Azure 存储帐户 –> 共享访问签名错误

在选择下一步后,点击**连接**选项以访问blob容器,就像这样:

Azure 存储帐户 –> 共享访问签名错误

现在,我可以成功通过Azure Storage Explorer访问blob存储容器中的文件,就像下面这样:

Azure 存储帐户 –> 共享访问签名错误

英文:

> I agree with @Gaurav Mantri, you missed including blob container
> name
in SAS URL that is giving you that error.

I have one storage account with blob container named sri like below:

Azure 存储帐户 –> 共享访问签名错误

When I tried to connect via Azure Storage Explorer without including blob container name in SAS URL, I got same error like this:

https://&lt;storage_acc_name&gt;.blob.core.windows.net/?sv=2022-11-02&amp;ss=bfqt&amp;srt=c&amp;sp=rwdlacupyx&amp;se=2023-06-13T13:17:29Z&amp;st=2023-06-13T05:17:29Z&amp;spr=https&amp;sig=xxxxxxxxxxxxxxxxx

Azure 存储帐户 –> 共享访问签名错误

To resolve it, you need to include blob container name in SAS URL like below:

https://&lt;storage_acc_name&gt;.blob.core.windows.net/&lt;blob_container_name&gt;?sv=2022-11-02&amp;ss=bfqt&amp;srt=c&amp;sp=rwdlacupyx&amp;se=2023-06-13T13:17:29Z&amp;st=2023-06-13T05:17:29Z&amp;spr=https&amp;sig=xxxxxxxxxxxxxxxxx

Azure 存储帐户 –> 共享访问签名错误

After selecting Next, click on Connect option to access blob container like this:

Azure 存储帐户 –> 共享访问签名错误

Now, I am able to access files in blob storage container successfully via Azure Storage Explorer like below:

Azure 存储帐户 –> 共享访问签名错误

huangapple
  • 本文由 发表于 2023年6月13日 09:33:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/76461192.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定