Making a REST call in Node.js that requires client certificate for authentication

StackOverflow https://stackoverflow.com/questions/23578025

  •  19-07-2023
  •  | 
  •  

Вопрос

Is there a way to make a rest call that requires a client certificate for authentication through Node.js ?

Это было полезно?

Решение

Yes, you can do that quite simply, here done using a regular https request;

var https = require('https'),                  // Module for https
    fs =    require('fs');                     // Required to read certs and keys

var options = {
    key:   fs.readFileSync('ssl/client.key'),  // Secret client key
    cert:  fs.readFileSync('ssl/client.crt'),  // Public client key
    // rejectUnauthorized: false,              // Used for self signed server
    host: "rest.localhost",                    // Server hostname
    port: 8443                                 // Server port
};

callback = function(response) {
  var str = '';    
  response.on('data', function (chunk) {
    str += chunk;
  });

  response.on('end', function () {
    console.log(str);
  });
}

https.request(options, callback).end();
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top