这篇关于the root certificate could not be located的文章,主要介绍解决Fiddler creation of the root certificate was not successful的问题,觉得挺不错的,感兴趣的php开发者可以参考下,希望对大家在学习php的成长路上有所帮助!
Fiddler最大的用处: 模拟请求、修改请求、手机应用调试。但是在开启 https 请求监视之后,却会经常提示 Fiddler creation of the root certificate was not successful 这种错误,下面记录一下解决办法。
通过DOS窗口命令进入 Fiddler 安装目录,然后执行命令:
cd "d:\Program Files\Fiddler"
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
Fiddler 下载地址: http://www.telerik.com/download/fiddler
总结
以上就是关于the root certificate could not be located全部内容,希望这篇解决Fiddler creation of the root certificate was not successful的问题文章能够帮你解决如相关的PHP问题,更多请关注PHP栏目的其它相关文章!
编程笔记 » 解决Fiddler creation of the root certificate was not successful的问题