How I can parse a GET response from facebook using node.js here is my code:
var options = {
host: 'graph.facebook.com',
path: 'url',
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
agent: false
};
var fb = https.get(options, function(res) {
console.log("statusCode: ", res);
res.on('data', function(d) {
console.log(d);
});
}).on('error', function(e) {
console.error(e);
});
Instead of printing the data I'd expect, it's printing some buffer value.