Any resource/codes on how fiddler works?

2019-02-21 10:44发布

I need to track http/url requests & redirects from a windows forms application using C#. It should handle both IE & firefox. Not sure if Fiddler is open-source but if i'm not mistaken, it's written using .NET. Sample codes or online articles on how to listen to http/url requests & redirects will be appreciated.

Thanks!

2条回答
We Are One
2楼-- · 2019-02-21 11:05

Fiddler works as standard HTTP proxy. There is no magic here. See HTTP protocol for details. In both IE/Firefox, you need to set Fiddler (or your custom program) as proxy, and then browser will use it for all outgoing requests. Proxy is responsible for forwarding request to correct server, and returning response. Proxies are typically used for 1) caching, 2) controlling access (and avoiding firewalls), 3) debugging.

See also Open Source Proxy Library for .Net for .NET proxy library (just quick googling... I have no experience with it).

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-02-21 11:22

You'd probably be interested in the new FiddlerCore library: http://fiddler.wikidot.com/fiddlercore

查看更多
登录 后发表回答