I\'m trying to make a HTTP POST request to the google QPX Express API [1] using nodejs and request [2].
My code l
var request = require('request'); request({ url: "http://localhost:8001/xyz", json: true, headers: { "content-type": "application/json", }, body: JSON.stringify(requestData) }, function(error, response, body) { console.log(response); });