I\'m using node.js and this request module to make HTTP calls to another server.
https://github.com/mikeal/request
It works great. I now need to modify this
const request = require('request'); request.post({ url: strRSAUrl, agentOptions: { ca: fs.readFileSync('path-to-cacert.pem') }, form: { some_key: some_value, } }, function (error, response, body) { objResponse.send(body); });
For more details,you can refer from nodejs#request