How to make a request with client certificate in Rust
I have a project with microservices deployed in Bluemix with Docker containers. All microservices are written in Java and the communication is using JKS files. I also developed a microservice in Node.js with Express.js. To consume the other microservices, I used the Request module with option.agentOptions feature and a pfx file , like this: var options = { uri: config.get("https://www.example.com/ms/service"), method: 'POST', body: data, json: true, headers: { 'Content-Type': 'application/json; charset=UTF-8' }, agentOptions: { pfx: fs.readFileSync(config.get("/path/to/file.pfx")), passphrase: