我开发了一个基于fiddlerCore的wpf应用程序,我帮我捕获https资源。然后我发现了一个问题。它还警告一个通知安装证书的窗口(DO_NOT_TRUST_FiddlerRoot)。我想要隐藏这个窗口。 enter image description here
安装证书方法如下:
public static bool InstallCertificate()
{
if (!CertMaker.rootCertExists())
{
if (!CertMaker.createRootCert())
return false;
if (!CertMaker.trustRootCert())
return false;
Cert = FiddlerApplication.Prefs.GetStringPref("fiddler.certmaker.bc.cert", null);
Key = FiddlerApplication.Prefs.GetStringPref("fiddler.certmaker.bc.key", null);
}
return true;
}
答案 0 :(得分:0)
幸运的是,我找到了解决这个问题的方法。 将以下代码添加到myfiddler.cs中的public void DoFiddler():
plot.width
只需安装认证并存储即可。
像这样,你不会找到“DO_NOT_TRUST_FiddlerRoot”窗口!