如何在节点中使用客户端证书进行HTTPS GET

问题描述:

我可以使用curl发出GET请求->

I can use curl for making a GET request ->

`curl -v https://example.com:82/v1/api?a=b` -E client_cert.pem:password 

如何在节点中使用相同的内容.我尝试了请求,超级代理,但无法通过证书.

How can I use same in node. I tried request, superagent but not able to pass certificate.

提前谢谢!

这对我有用-

var https = require('https');
var fs  = require('fs');

var options = {
  hostname: 'example.com',
  port: 83,
  path: '/v1/api?a=b',
  method: 'GET',
  key: fs.readFileSync('/path/to/private-key/key.pem'),
  cert: fs.readFileSync('/path/to/certificate/client_cert.pem'),  
  passphrase: 'password'
};

var req = https.request(options, function(res) {
console.log(res.statusCode);
res.on('data', function(d) {
  process.stdout.write(d);
  });
});

req.end()