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
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); } });