Шаги для отправки запроса https в службу отдыха в Node js

Каковы шаги для отправки запроса https в node js в службу отдыха? У меня есть api, как https://133-70-97-54-43.sample.com/feedSample/Query_Status_View/Query_Status/Output1?STATUS=Joined%20school

Как передать запрос и какие параметры мне нужно предоставить для этого API, например хост, порт, путь и метод?

Ответ 1

Самый простой способ - использовать модуль request.

request('https://example.com/url?a=b', function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body);
  }
});

Ответ 2

просто используйте основной модуль https с https.request. Пример для запроса POST (GET будет похож):

var https = require('https');

var options = {
  host: 'www.google.com',
  port: 443,
  path: '/upload',
  method: 'POST'
};

var req = https.request(options, function(res) {
  console.log('STATUS: ' + res.statusCode);
  console.log('HEADERS: ' + JSON.stringify(res.headers));
  res.setEncoding('utf8');
  res.on('data', function (chunk) {
    console.log('BODY: ' + chunk);
  });
});

req.on('error', function(e) {
  console.log('problem with request: ' + e.message);
});

// write data to request body
req.write('data\n');
req.write('data\n');
req.end();

Ответ 3

Использование модуля запроса решило проблему.

// Include the request library for Node.js   
var request = require('request');
//  Basic Authentication credentials   
var username = "vinod"; 
var password = "12345";
var authenticationHeader = "Basic " + new Buffer(username + ":" + password).toString("base64");
request(   
{
url : "https://133-70-97-54-43.sample.com/feedSample/Query_Status_View/Query_Status/Output1?STATUS=Joined%20school",
headers : { "Authorization" : authenticationHeader }  
},
 function (error, response, body) {
 console.log(body); }  );         

Ответ 4

Вы можете использовать superagent и node url, создайте такой запрос:

var request = require('superagent');
var url = require('url');

var urlObj = {
  protocol: 'https',
  host: '133-70-97-54-43.sample.com',
  pathname: '/feedSample/Query_Status_View/Query_Status/Output1'
};

request
  .get(url.format(urlObj))
  .query({'STATUS': 'Joined school'})
  .end(function(res) {
    if (res.ok) {
      console.log(res.body);
    }
  });