私の人生のためにこれを理解することはできません。以下はリクエストモジュールを使用した実装ですが、node-XMLHttpRequestモジュールを使用してみましたが役に立ちませんでした。
var request = require('request');
var url = 'http://api.stackexchange.com/2.1/questions?pagesize=100&fromdate=1356998400&todate=1359676800&order=desc&min=0&sort=votes&tagged=javascript&site=stackoverflow';
request.get({ url: url }, function(error, response, body) {
if (error || response.statusCode !== 200) {
console.log('There was a problem with the request');
return;
}
console.log(body); // outputs gibberish characters like �
console.log(body.toString()); // also outputs gibberish
});
エンコーディングの問題のようですが、ブラウザでまったく同じコード(ネイティブXHRオブジェクトを使用)を使用しており、問題なく動作します。私は何が間違っているのですか?