PHPStorm 7 REST客户端允许自签名证书

时间:2013-11-06 15:04:03

标签: php rest iis ssl-certificate phpstorm

我正在使用PHPStorm 7来创建RESTful API。我想使用内置的REST客户端,但需要能够告诉它允许不受信任的SSL证书。我在测试服务器上使用自签名证书。

在我发送请求的那一刻,我得到了这个回复。

javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated

我可以改变一个选项来忽略这个吗?

1 个答案:

答案 0 :(得分:0)

我建议您创建自己的证书颁发机构(CA)并为其签名的服务器生成证书。 然后,您必须将CA公共证书添加到本地计算机(可能已添加到Java存储库,并进入Internet Explorer设置(如果您使用的是Windows)。

Creating Your Own SSL Certificate Authority (and Dumping Self Signed Certs)

Custom SSL Certificate Authority?