Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

net::ERR_INSECURE_RESPONSE while making ajax request from node-webkit

when I'm trying to make ajax request with jquery to:

https://localhost:8443/uri

I get this error:

net::ERR_INSECURE_RESPONSE

I'm using self signed certificate, in package.json I have these parameters:

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

does anybody know how I can add self signed certificates to node-webkit's truststore !?

OS: ubuntu 14.10

like image 944
Rodislav Moldovan Avatar asked Nov 14 '14 17:11

Rodislav Moldovan


1 Answers

The problem here is that the browser is blocking the call to that server because that server has an invalid certificate. Since it is a localhost server, it is a self-signed certificate. The best way to get around this is to try one of the following...

  • Change the localhost:8443 server to use a valid certificate
  • From your browser load the page, https://localhost:8443/, accept the invalid certificate, and then try the ajax call.
like image 159
Eric Avatar answered Oct 22 '22 13:10

Eric