Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to do HTTPS GET with client certificate in node

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.

Thanks in advance!

like image 787
rohitkadam19 Avatar asked Feb 18 '16 09:02

rohitkadam19


1 Answers

This worked for me -

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()
like image 64
rohitkadam19 Avatar answered Nov 07 '22 11:11

rohitkadam19