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! 回答1: 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