在 Node js 中向 rest 服务发送 https 请求的步骤

问题描述 投票:0回答:6

在node js中发送https请求到rest服务的步骤是什么? 我有一个像一样暴露的api(原始链接不起作用...)

如何传递请求以及我需要为此 API 提供哪些选项,例如 主机、端口、路径和方法?

javascript node.js rest post get
6个回答
78
投票

只需使用核心 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();

29
投票

更新:这个答案已经过时了。 Request npm package 自 2020 年起正式弃用。

最简单的方法是使用request模块。

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

28
投票

注意如果你正在使用

https.request
不要直接使用
res.on('data',..
的身体。如果您有大量数据以块的形式出现,这将失败。所以你需要连接所有的数据,然后在
res.on('end'
中处理响应。例子-

  var options = {
    hostname: "www.google.com",
    port: 443,
    path: "/upload",
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'Content-Length': Buffer.byteLength(post_data)
    }
  };

  //change to http for local testing
  var req = https.request(options, function (res) {
    res.setEncoding('utf8');

    var body = '';

    res.on('data', function (chunk) {
      body = body + chunk;
    });

    res.on('end',function(){
      console.log("Body :" + body);
      if (res.statusCode !== 200) {
        callback("Api call failed with response code " + res.statusCode);
      } else {
        callback(null);
      }
    });

  });

  req.on('error', function (e) {
    console.log("Error : " + e.message);
    callback(e);
  });

  // write data to request body
  req.write(post_data);
  req.end();

5
投票

使用请求模块解决了问题。

// 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
投票

因为这里没有任何“GET”方法的例子。 要注意的是,

path
对象中的
options
应该设置为
'/'
,以便正确发送请求

const https = require('https')
const options = {
  hostname: 'www.google.com',
  port: 443,
  path: '/',
  method: 'GET',
  headers: {
    'Accept': 'plain/html',
    'Accept-Encoding': '*',
  }
}

const req = https.request(options, res => {
  console.log(`statusCode: ${res.statusCode}`);
  console.log('headers:', res.headers);

  res.on('data', d => {
    process.stdout.write(d)
  })
})

req.on('error', error => {
  console.error(`Error on Get Request --> ${error}`)
})

req.end()

0
投票

使用“GET”方法的示例很好,但它也可以在 TypeScript/Node.js 设置中与常量变量一起使用。如果是这种情况,函数 on('error') 和 end() 必须在 https.request 函数之外定义。

const https = require('https')
const options = {
  hostname: 'www.google.com',
  port: 443,
  path: '/',
  method: 'GET',
  headers: {
    'Accept': 'plain/html',
    'Accept-Encoding': '*',
  }
}

const request = https.request(options, res => {
  const callback = (data: string) => {
    process.stdout.write(`response data: ${data}`);
  }
  res.on('data', callback)
})

request.on('error', error => {
  console.error(`Error on Get Request --> ${error}`)
})
request.end()
© www.soinside.com 2019 - 2024. All rights reserved.