fiddler视频教程
添加ServerIP
快捷键Ctrl+R 或者 菜单->Rules->Customize Rules…
在CustomRules.js
文件里Ctrl+F
查找字符串1
static function Main()
添加一行代码即可显示IP
1 | FiddlerObject.UI.lvSessions.AddBoundColumn("ServerIP", 120, "X-HostIP"); |
结果如下所示:1
2
3
4
5
6
7
8
9
10
11
12
13
14static function Main() {
var today: Date = new Date();
FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today;
//添加显示 ServerIP
FiddlerObject.UI.lvSessions.AddBoundColumn("ServerIP", 120, "X-HostIP");
// Uncomment to add a "Server" column containing the response "Server" header, if present
// UI.lvSessions.AddBoundColumn("Server", 50, "@response.server");
// Uncomment to add a global hotkey (Win+G) that invokes the ExecAction method below...
// UI.RegisterCustomHotkey(HotkeyModifiers.Windows, Keys.G, "screenshot");
}
图标代表含义

使用Fiddler调试手机页面请求
http://i.wanz.im/2013/04/30/debugging_http_request_with_fiddler/
fiddler 不支持视频最后讲的 Willow
参考资料:
http://www.xuanfengge.com/fiddler-displays-the-set-ip-method.html
http://tid.tenpay.com/?p=3011
文章若有纰漏请大家补充指正,谢谢~~