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.

While playing with https in node.js, I have stucked in reading response data. Following is the code for https request;

https.get(options, function(resp) {                     
    console.log(resp.headers)        //working fine
    resp.on('data', function(d) {           
        console.log(d)             // buffered data; like <Buffer 7b 22 69...
        process.stdout.write(d);  // working fine(prints decoded data in console)
        var decoded_data=???    }); 
}).on('error', function(e) {
    console.error(e);
});

But, how can I decode response data & write it into a variable?

share|improve this question

1 Answer

up vote 1 down vote accepted
var decoded_data = d.toString('utf8');

or, earlier on:

resp.setEncoding('utf8');

and then all your on events will give you a string instead of a buffer.

share|improve this answer
Simply d.toString() did the magic.Thanks... – Vivek Jul 30 '12 at 17:01

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.