Steps to send a https request to a rest service in Node js

后端 未结 4 926
粉色の甜心
粉色の甜心 2020-12-13 09:24

What are the steps to send a https request in node js to a rest service? I have an api exposed like https://133-70-97-54-43.sample.com/feedSample/Query_Status_View/Query_Sta

4条回答
  •  粉色の甜心
    2020-12-13 10:02

    The easiest way is to use the request module.

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

提交回复
热议问题