Fiddler 自动将https请求转为http请求

Customize Rules编辑,修改OnBeforeRequest方法,添加:

if (oSession.isHTTPS)
{
oSession.fullUrl = "http://" + oSession.hostname + oSession.PathAndQuery;
}

方法来自:https://www.cnblogs.com/dannywang/p/6437754.html


未经允许不得转载:阿藏博客 » Fiddler 自动将https请求转为http请求