Azure 存储资源管理器用于连接到 Azure 存储的协议

发布于 2025-01-10 14:40:50 字数 60 浏览 5 评论 0原文

有人可以帮忙找到 Azure 存储资源管理器用于连接到 Azure 存储的协议吗? 是SMB还是REST?

Can someone please help to find the protocol used by the Azure Storage Explorer to connect to Azure storage??
is it SMB or REST?

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

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

发布评论

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

评论(2

扎心 2025-01-17 14:40:50

Azure 存储资源管理器 (ASE) 是 azcopy 命令工具的包装器。

您可以从此处复制 azcopy 命令!

这是我粘贴到记事本中的 azcopy 命令示例

azcopy command

和 Azcopy 内部使用 REST api。

为了捕获所有发出的 REST api 调用,您还可以使用 fiddler 工具。

按照下面链接中的说明进行操作,您应该能够看到它们。
https://learn.microsoft.com/en-us/ power-query/web-connection-fiddler

所以顺序是 ASE 使用 -> azcopy 使用 ->休息 API。

或者您也可以在“%USERPROFILE%.azcopy”的位置找到单个会话的 azcopy 日志

Azure Storage Explorer (ASE) is a wrapper around azcopy command tool.

You can copy the azcopy command from here!

Here is a sample of azcopy command I pasted into the notepad

azcopy command

and Azcopy internally uses REST api.

In order to capture all the REST api calls going out you can also use fiddler tool.

Follow the instruction from the link below and you should be able to see them.
https://learn.microsoft.com/en-us/power-query/web-connection-fiddler

So the order is ASE uses -> azcopy uses -> REST API.

or you can also find the azcopy logs at this location for individual session at "%USERPROFILE%.azcopy"

囍孤女 2025-01-17 14:40:50

这是休息。

Storage Explorer 使用 JavaScript 存储 SDK,它是 REST API 的包装器。

It is REST.

Storage Explorer makes use of Storage SDKs for JavaScript which are wrapper over REST API.

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