Creating an HTTP request using Unirest for node.js
unirest.post('http://httpbin.org/post') | |
.headers({ 'Accept': 'application/json' }) | |
.send({ "parameter": 23, "foo": "bar" }) | |
.end(function (response) { | |
console.log(response.body); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment