给fiddler2添加一列httpmethod
public static BindUIColumn("HTTPMethod")
function CalcMethodCol(oS: Session){
if (null != oS.oRequest) return oS.oRequest.headers.HTTPMethod; else return String.Empty;
}
在FiddlerScript中,加上上面的代码,重启fiddler就会出现一列HTTPMethod,就是GET/POST的值,方便查找某些链接POST数据。
function CalcMethodCol(oS: Session){
if (null != oS.oRequest) return oS.oRequest.headers.HTTPMethod; else return String.Empty;
}
在FiddlerScript中,加上上面的代码,重启fiddler就会出现一列HTTPMethod,就是GET/POST的值,方便查找某些链接POST数据。