Skip to content

Instantly share code, notes, and snippets.

@ismaelc
Created October 22, 2013 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ismaelc/7109128 to your computer and use it in GitHub Desktop.
Save ismaelc/7109128 to your computer and use it in GitHub Desktop.
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