Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to send data through a POST request from a node.js server to another node.js server. What I do in the "client" node.js is the following:

var options = {
    host: 'my.url',
    port: 80,
    path: '/login',
    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();

This chunk is taken more or less from the node.js website so it should be correct. The only thing I don't see is how to include username and password in the options variable to actually login. This is how I deal with the data in the server node.js (I use express):

app.post('/login', function(req, res){
    var user = {};
    user.username = req.body.username;
    user.password = req.body.password;
        ...
});

How can I add those username and password fields to the options variable to have it logged in?

Thanks

share|improve this question
possible duplicate of HTTP POST request in node.js – Tomalak Mar 19 '12 at 10:21

1 Answer

up vote 9 down vote accepted

Posting data is a matter of sending a query string (just like the way you would send it with an URL after the ?) as the request body.

This also requires to declare Content-Type and Content-Length values so the server knows how to interpret the data.

var querystring = require('querystring');

var data = querystring.stringify({
      username: yourUsernameValue,
      password: yourPasswordValue
    });

var options = {
    host: 'my.url',
    port: 80,
    path: '/login',
    method: 'POST',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Content-Length': data.length
    }
};

var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log("body: " + chunk);
    });
});

req.write(data);
req.end();
share|improve this answer
Thanks a lot! Mind the comma after method: 'POST'! :-) – Masiar Mar 19 '12 at 10:29
@Masiar Absolutely. Fixed that. – Tomalak Mar 19 '12 at 10:32
I get an Error: socket hang up. What could be wrong? – static Apr 29 at 1:56
@static All kinds of things. You should write a complete but minimal test case that reproduces the problem, say what node version you're using and post that as a new question. Doing a quick search beforehand might be a wise idea in any case. – Tomalak Apr 29 at 6:40

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.