The request module is similar to http module. The syntax for installing this module is
npm install request --save
Include this module by using below syntax.
var request = require('request');
the syntax for request
try{ var headers = { 'User-Agent': 'Super Agent/0.0.1', 'Content-Type': 'application/x-www-form-urlencoded' } var options = { url: 'URL', method: 'POST', headers : headers, form: {'KEY1': 'VALUE1', 'KEY2' : 'VALUE1'} }; request(options, function (error, response, body) { console.log(' response.statusCode '+response.statusCode); if (!error && response.statusCode == 200) { // Print out the response body var body = JSON.parse(body); console.log(body); }else{ console.log(' error '+ error); } }); } catch(e){ console.log(e); }
You might also like:
Convert and download html to pdf without saving file28-10-2018 node js convert html to pdf pdf download pdf without saving |
How to redirect one page to another page in php20-03-2017 redirect php |
How to upload file by using request module18-03-2017 request module node js |
How to make an http request in node js14-03-2017 http module node js |
Change datepicker display format06-03-2017 datepicker angular js |