Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I make an HTTP POST request with data in node.js?

share|improve this question

7 Answers

up vote 109 down vote accepted

Here's an example of using node.js to make a POST request to the Google Compiler API:

// We need this to build our post string
var querystring = require('querystring');
var http = require('http');
var fs = require('fs');

function PostCode(codestring) {
  // Build the post string from an object
  var post_data = querystring.stringify({
      'compilation_level' : 'ADVANCED_OPTIMIZATIONS',
      'output_format': 'json',
      'output_info': 'compiled_code',
        'warning_level' : 'QUIET',
        'js_code' : codestring
  });

  // An object of options to indicate where to post to
  var post_options = {
      host: 'closure-compiler.appspot.com',
      port: '80',
      path: '/compile',
      method: 'POST',
      headers: {
          'Content-Type': 'application/x-www-form-urlencoded',
          'Content-Length': post_data.length
      }
  };

  // Set up the request
  var post_req = http.request(post_options, function(res) {
      res.setEncoding('utf8');
      res.on('data', function (chunk) {
          console.log('Response: ' + chunk);
      });
  });

  // post the data
  post_req.write(post_data);
  post_req.end();

}

// This is an async file read
fs.readFile('LinkedList.js', 'utf-8', function (err, data) {
  if (err) {
    // If this were just a small part of the application, you would
    // want to handle this differently, maybe throwing an exception
    // for the caller to handle. Since the file is absolutely essential
    // to the program's functionality, we're going to exit with a fatal
    // error instead.
    console.log("FATAL An error occurred trying to read in the file: " + err);
    process.exit(-2);
  }
  // Make sure there's data before we post it
  if(data) {
    PostCode(data);
  }
  else {
    console.log("No data to post");
    process.exit(-1);
  }
});

I've updated the code to show how to post data from a file, instead of the hardcoded string. It uses the async fs.readFile command to achieve this, posting the actual code after a successful read. If there's an error, it is thrown, and if there's no data the process exits with a negative value to indicate failure.

share|improve this answer
sure it's an example but don't hardcore code into strings, just use a bit of fs.read instead. – Raynos May 28 '11 at 13:05

This gets a lot easier if you use the request library.

var request = require('request');

request.post(
    'http://www.yoursite.com/formpage',
    { form: { key: 'value' } },
    function (error, response, body) {
        if (!error && response.statusCode == 200) {
            console.log(body)
        }
    }
);

Aside from providing a nice syntax it makes json requests easy, handles oauth signing (for twitter, etc.), can do multi-part forms (e.g. for uploading files) and streaming.

share|improve this answer
4  
excelent lib!!! – rizidoro Oct 23 '12 at 19:36

Like so, as per the documentation for http.request:

var options = {
   host: 'www.google.com',
   port: 80,
   path: '/upload',
   method: 'POST'
};

var req = http.request(options, function(res) {
  console.log('STATUS: ' + res.statusCode);
  console.log('HEADERS: ' + JSON.stringify(res.headers));
  res.setEncoding('utf8');
  res.on('data', function (chunk) {
    console.log('BODY: ' + chunk);
  });
});

req.on('error', function(e) {
  console.log('problem with request: ' + e.message);
});

// write data to request body
req.write('data\n');
req.write('data\n');
req.end();
share|improve this answer
2  
With out this line the POST request just hangs: 'Content-Length': post_data.length – muloka Mar 26 at 13:12

I made a friendly wrapper for this complex API: https://gist.github.com/1393666

share|improve this answer
Thanks! I'm curious if there's a good reason (aside from convenience) that you send (body, res) to the callback even though body already exists on res.body (you put it there on line 48)? – Langdon Apr 1 '12 at 15:08
3  
I think it was just for convenience. You should also look at the 'request' module: github.com/mikeal/request. It looks very good. – pagewil Apr 1 '12 at 19:49

I like the simplicity of superagent (https://github.com/visionmedia/superagent). Same api on both node and browser.

share|improve this answer

I use Restler and Needle for production purposes. They are both much more powerful than native httprequest. It is possible to request with basic authentication, special header entry or even upload/download files.

As for post/get operation, they also are much simpler to use than raw ajax calls using httprequest.

needle.post('https://my.app.com/endpoint', {foo:'bar'}, 
    function(err, resp, body){
        console.log(body);
});
share|improve this answer
Oops; I stomped on your edit. Sorry about that! – Andrew Barber Mar 8 at 19:09

I am getting a problem for longer posts if there are umlaute (öäü) in the body. Therefore I am setting the content length like this:

'content-length': new Buffer(body, 'utf8').length

This returns the actual binary length of the body. If I don't set it using a Buffer the body is read truncated on the server side.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.