如何用C#捕获HTTP响应?
当网络浏览器发出请求时,如何捕获 HTTP 响应?
网页从服务检索数据(带有帖子)。 服务返回一个 json 对象。我想要的是捕获该 json 并实时解析它。
最简单的方法是什么?
How do I capture HTTP response when the request is made by web browser?
Webpage retrieves data (with post) from a service.
Service returns a json object. What I want is to capture that json and parse it in realtime.
What would be the simplest way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您最好的选择是使用 Fiddler,也许与 JSON 查看器 插件。
从主页:
Your best bet is to use Fiddler, perhaps with the JSON viewer add-on.
From the homepage:
尝试在 .Net 中搜索
HttpModule
。它们是某种过滤器。 HTTP 请求和响应流过它们并可以操纵内容。Try googling for
HttpModule
in .Net. They are some sort of filters. HTTP requests and responses flow through them and can manipulate the content.