net :: ERR_INSECURE_RESPONSE从node-webkit发出ajax请求时

时间:2014-11-14 17:56:08

标签: jquery ajax https node-webkit

当我尝试用jquery发出ajax请求时:

https://localhost:8443/uri

我收到此错误:

net::ERR_INSECURE_RESPONSE

我正在使用自签名证书,在package.json中我有以下参数:

"chromium-args": "--ignore-certificate-errors --auth-schemes='basic --auth-server-whitelist='*localhost:8443' --auth-negotiate-delegate-whitelist='*localhost:8443'''",

是否有人知道我如何将自签名证书添加到node-webkit的truststore中??

操作系统:ubuntu 14.10

1 个答案:

答案 0 :(得分:5)

此处的问题是浏览器阻止对该服务器的调用,因为该服务器的证书无效。由于它是localhost服务器,因此它是self-signed certificate。解决这个问题的最佳方法是尝试以下方法之一......