Node Script have to call a URL , and get the response and use the some variable of the response to call the next url. is it possible?
in below example, i'm using token in other scripts.
var http = require('http');
var options = {
host: 'url' ,
path: '/path',
method: 'POST'
};
var req = http.request(options, function(res) {
token="hi"; // to be populated by res
});
req.end();
exports.token = token