如何检查Firefox配置文件是否接受不受信任的证书?

我知道您可以使用以下代码将其设置为true / false:

    FirefoxProfile profile = new FirefoxProfile();
    profile.setAcceptUntrustedCertificates(false);


但是,如何确定FirefoxProfile设置为什么呢?

最佳答案

引用docs


  公共无效setAcceptUntrustedCertificates(boolean acceptUntrustedSsl)
  
  设置Firefox是否应接受具有以下内容的SSL证书:
  已过期,由未知授权机构签名或通常不受信任。
  默认情况下将其设置为true。


因此,除非将其更改为false,否则它已经为true,并且通过代码应该知道在使用控件时该标志已更改。

10-08 06:31