去评论
dz插件网

给fiddler2添加一列httpmethod

婷姐
2023/04/21 16:36:14
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数据。