Skip to content

Instantly share code, notes, and snippets.

@sillygwailo
Created April 15, 2014 22:19
Show Gist options
  • Save sillygwailo/10782966 to your computer and use it in GitHub Desktop.
Save sillygwailo/10782966 to your computer and use it in GitHub Desktop.
Receiving a POST request in Node.js from Reading.am
var http = require('http'),
fs = require('fs'),
qs = require('querystring');
server = http.createServer( function(req, res) {
if (req.method == 'POST') {
var body = '';
req.on('data', function (data) {
body += data;
});
req.on('end', function () {
reading = qs.parse(body));
console.log(reading["post[url]"]);
});
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('post received');
}
});
port = 3000;
host = '[hostname]';
server.listen(port, host);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment