How do a make a rest call from Node.js to a server that requires a certificate for authentication?

有帮助吗?

解决方案

The solution is to use a custom connection pool, for which you'll need to use a custom Agent.


Here's an example using the standard https module, straight from the documentation:

var options = {
  hostname: 'encrypted.google.com',
  port: 443,
  path: '/',
  method: 'GET',
  key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
  cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};
options.agent = new https.Agent(options);

var req = https.request(options, function(res) {
  ...
}

And if you use mikeal's request, you can set the custom agent in the pool option.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top