azure-storage - 访问 Windows Azure Blob 存储

标签 azure-storage azure-blob-storage

我正在尝试访问我在 Windows Azure 上的博客存储,但每次我浏览到

http://my_storageAcount.blob.core.windows.net

它会产生 400 错误(错误请求)。 感谢您的建议。

最佳答案

http://my_storageAcount.blob.core.windows.net是您的 Azure Blob 存储帐户的地址。如果您尝试访问 blob,则需要指定容器名称和 blob 名称。 假设,您在“mycontainer”中有一个名为“MyBlob”的 blob,您可以通过指定 http://my_storageAcount.blob.core.windows.net/mycontainer/MyBlob .

对于 Blob 上的其他操作,Microsoft 已发布 REST api 以与 Blob 一起使用。了解更多信息 Visit here .如果您正在使用私有(private) blob 并坚持在浏览器中访问它们。您需要具有私有(private) blob 的共享访问签名才能直接在浏览器中访问它们。要了解有关共享访问签名的更多信息,请访问 here.

希望对您有所帮助。祝您编码愉快!!!

关于azure-storage - 访问 Windows Azure Blob 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11825927/

相关文章:

c# - Azure Function 无法与 QueueTrigger 和非 void 返回值一起使用?

python - 有没有更好的方法来处理以文本模式写入 csv 并以二进制模式读取?

python-3.x - 如何使用 python 在 Azure 云存储中迭代子目录中的所有 blob 名称?

node.js - 在 azure blob 容器之间复制文件

azure - 从 Azure Databricks 写入 Azure Blob 存储时重复 Blob 创建的事件

java - 即使用户未使用 SaS token 进行身份验证,是否有一种方法可以以编程方式为 Blob 容器生成 Azure SaS token java

azure - 存储帐户问题?

java - 如何将 ADLS 帐户与 Azure VM 连接

azure - 是否可以在 headers/cookies/post body 中传递 Azure SAS token ?

python - 并行azure blob上传收到警告 'urllib3.connectionpool WARNING - Connection pool is full, discarding connection'