How to capture HTTP response with C#?

2019-09-08 08:41发布

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?

2条回答
我命由我不由天
2楼-- · 2019-09-08 09:37

Your best bet is to use Fiddler, perhaps with the JSON viewer add-on.

From the homepage:

Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-09-08 09:41

Try googling for HttpModule in .Net. They are some sort of filters. HTTP requests and responses flow through them and can manipulate the content.

查看更多
登录 后发表回答