Fiddler 从安装到使用 (creation of the root certificate was&n

转载地址:http://blog.sina.com.cn/s/blog_63efaf480102w5xj.html

Fiddler最大的用处: 模拟请求、修改请求、手机应用调试


Fiddler 下载地址: http://www.telerik.com/download/fiddler

很简单的安装,需要注意的是win8的配置,安装完成之后会弹出一个网页,点击win8配置的那项,有详细的操作说明 
Fiddler <wbr>从安装到使用 <wbr>(creation <wbr>of <wbr>the <wbr>root <wbr>certificate <wbr>was&n

Fiddler 想要监听https,还需要相应的设置才行
依次选中tool->fiddler option->https

Fiddler <wbr>从安装到使用 <wbr>(creation <wbr>of <wbr>the <wbr>root <wbr>certificate <wbr>was&n

正常情况下就ok了
打开网页:http://localhost:8888/  点击 
安装证书完成


也有可能会出现creation of the root certificate was not located等错误;
第二步骤:

在命令行工具中 
cd "C:\Program Files (x86)\Fiddler2"
       makecert.exe -r -ss my -n "CN=DO_NOT_TRUST_FiddlerRoot, O=DO_NOT_TRUST, OU=Created by http://www.fiddler2.com" -sky signature -eku 1.3.6.1.5.5.7.3.1 -h 1 -cy authority -a sha1 -m 120 -b 09/05/2012
用这个方法,我通过了。

如果成功的话
打开网页:http://localhost:8888/  点击 
如果失败
请参考:http://codego.net/4084163/

猜你喜欢

转载自blog.csdn.net/wlanye/article/details/80006189