Fork me on GitHub

fiddler 转 https 为 http

Rules -> Customize Rules…
Go -> to OnBeforeRequst

在 OnBeforeRequst 方法的开头添加内下内容:

1
2
3
4
if (oSession.isHTTPS){
oSession.fullUrl = "http://" + oSession.hostname + oSession.PathAndQuery;
}
注: 自测在 mi 6 系统浏览器里不好使,其它浏览器或 app 内没发现问题

-------------感谢您的阅读 有问题请留言(或mailto:frostbelt@sina.cn)-------------