(GET/PUT/POST/DELETE...)列

有没有一种简单的方法可以将一个 HTTPMethod (GET/PUT/POST/DELETE...)列添加到 Fiddler 显示中?

小提琴维基中找到了添加会话变量的说明:

协议添加“客户端 IP 地址”X-CLIENTIP

但是 HTTPMethod 似乎没有那么简单。

有人知道怎么做或者有好的小提琴手剧本吗?

17703 次浏览

Edit your rules, then in the class Handlers add:

public static BindUIColumn("Method", 60)
function FillMethodColumn(oS: Session){


return oS.oRequest.headers.HTTPMethod;
}

There's an easier way now (as of v4.4.5.1 or earlier).

Right-click the column bar and select Customize columns....

Collection: Miscellaneous
Field Name: RequestMethod
Screenshot of Customize Columns dialog box

Result:
Screenshot of new created column