Azure 存储资源管理器用于连接到 Azure 存储的协议
有人可以帮忙找到 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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Azure 存储资源管理器 (ASE) 是 azcopy 命令工具的包装器。
这是我粘贴到记事本中的 azcopy 命令示例
和 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.
Here is a sample of azcopy command I pasted into the notepad
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"
这是休息。
Storage Explorer 使用 JavaScript 存储 SDK,它是 REST API 的包装器。
It is REST.
Storage Explorer makes use of Storage SDKs for JavaScript which are wrapper over REST API.