Created
April 15, 2014 22:19
-
-
Save sillygwailo/10782966 to your computer and use it in GitHub Desktop.
Receiving a POST request in Node.js from Reading.am
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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