在提琴手中发出作曲家的请求时,如何查看连接隧道信息?
当我在提琴手中使用拦截请求时,我可以检查连接隧道。但是,当我尝试向提琴手作曲家发出请求时,没有连接会话。从作曲家发出请求时是否可以检查连接?
When I use intercept requests in Fiddler, I can inspect CONNECT tunnels. But when I try to issue request from Fiddler's composer, there is no CONNECT session. Is it possible to inspect CONNECTs when issuing requests from Composer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
连接
是一个特殊的协议命令,仅与HTTP代理结合使用。如果代理从客户端接收连接命令,则意味着“请建立与连接命令中包含的端点的连接”。如果您使用提琴手作曲家,请求将直接发送到服务器,而无需使用Fiddler作为代理。因此,您不会看到连接命令。如果您想查看连接请求,则必须使用使用Fiddler作为HTTPS代理的外部工具。
CONNECT
is a special protocol command that is only used in combination with a http proxy. If a proxy receives a CONNECT command from the client this means "please establish a connection to the endpoint included in the CONNECT command".If you use Fiddler composer the request is sent directly to the server without using Fiddler as a proxy. Thus you won't see a CONNECT command. If you want to see a CONNECT request then you have to use an external tool that uses Fiddler as https proxy.