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 using the following code to send a session description (tiny JSON code - http://www.ietf.org/rfc/rfc2327.txt).

function sendMessage(message) {
  var msgString = JSON.stringify(message);
  console.log('C->S: ' + msgString);
  path = '/message?r=67987409' + '&u=57188688';
  var xhr = new XMLHttpRequest();
  xhr.open('POST', path, true);
  xhr.send(msgString);
}

I'm not sure how to go about retreiving the JSON on my Node.js server.

Any help would be very much appreciated! :)

share|improve this question

1 Answer

Here's a code that can handle POST request in node.js .

var http = require('http');

var server = http.createServer(function (request, response) {
    if (request.method == 'POST') {
        var body = '';
        request.on('data', function (data) {
            body += data;
        });
        request.on('end', function () {

            var POST = JSON.parse(body);
            // POST is the post data

        });
    }
});
server.listen(80);

Hope this can help you.

share|improve this answer
Wow, this looks like exactly what I need! I haven't tested it yet, but I will do now. Do you know if I can push it to a specified client after server receive (not the original sender) without using a websocket? If I have to implement socket.io it might be better to just use the dual-direction capabilities of the socket instead of the xhr? Google used XHR when implementing the channel API, rather than using a socket for both c -> s and s -> c exchanges of session descriptions... I think they only used a socket for s -> c exchanges [source: apprtc.appspot.com] – Sam Ames Dec 31 '12 at 13:36
Thank you for taking the time to send me this! :) – Sam Ames Dec 31 '12 at 13: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.