400 bad request : Your browser sent an invalid request
If I try to post to same url on "Postman", I am able to get response. But inside my express framework I am getting this error as response :
request({
headers: {
'Content-Type' : "application/json" ,
'Authorization' : "*****",
'X-APP-TOKEN' : "*****"
},
url:"url to hit",
method : 'POST',
}, function(error, response, body){
if(error) {
console.log(error);
} else {
console.log(response);
console.log(response.statusCode, body);
}
});