Nodejs https request UNABLE_TO_GET_ISSUER_CERT_LOCALLY
问题 OS: debian sid Nodejs: v0.10.38 I have a request to a private service that use authentication: var https = require('https'); var options = { host: 'private.service.com', path: '/accounts/' + '123323' + '/orders', method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Content-Length': 0, 'Authorization': 'Bearer ' + 'asdsdgcvxcvxcv' } }; var request = https.request(options, function (res) { console.log(res); }); When i run the script, node throws this error: events.js