Skip to content

Instantly share code, notes, and snippets.

@7rin0
Created May 7, 2017 10:10
Show Gist options
  • Save 7rin0/59ed82acac5f31752f3e473d32f71e24 to your computer and use it in GitHub Desktop.
Save 7rin0/59ed82acac5f31752f3e473d32f71e24 to your computer and use it in GitHub Desktop.
Node.js simple and custom post request
// http://stackoverflow.com/a/6432824
var request = require('request');
request.post({
headers: {'content-type' : 'application/x-www-form-urlencoded'},
url: 'http://localhost/test2.php',
body: "mes=heydude"
}, function(error, response, body){
console.log(body);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment