I am using request module for node.js to make HTTP GET call to an api having address like: http://x.x.xxx.xx:8000/names
but the call is returning an error [Error: Invalid protocol: null]
.
My api call looks like this:
request.get({
uri: 'http://x.x.xxx.xx:8000/names'
}, function(err, res, body){
if(err == null){
res.status(200).send(data);
}else{
console.log(err);
}});
Note: I have used proxies for npm through "npm config set proxy" and "npm config set https proxy" . Removing them is also not solving the problem.
Thanks