web-dev-qa-db-ja.com

NodeJSリクエストのモジュールgzipレスポンスボディを解凍(解凍)するにはどうすればよいですか?

リクエストのモジュール応答でgzip圧縮されたボディを解凍するにはどうすればよいですか?

私はウェブ上でいくつかの例を試しましたが、どれもうまくいかないようです。

request(url, function(err, response, body) {
    if(err) {
        handleError(err)
    } else {
        if(response.headers['content-encoding'] == 'gzip') {    
            // How can I unzip the gzipped string body variable?
            // For instance, this url:
            // http://highsnobiety.com/2012/08/25/norse-projects-fall-2012-lookbook/
            // Throws error:
            // { [Error: incorrect header check] errno: -3, code: 'Z_DATA_ERROR' }
            // Yet, browser displays page fine and debugger shows its gzipped
            // And unzipped by browser fine...
            if(response.headers['content-encoding'] && response.headers['content-encoding'].toLowerCase().indexOf('gzip') > -1) {   
                var body = response.body;                    
                zlib.gunzip(response.body, function(error, data) {
                    if(!error) {
                        response.body = data.toString();
                    } else {
                        console.log('Error unzipping:');
                        console.log(error);
                        response.body = body;
                    }
                });
            }
        }
    }
}
62
izk

私も仕事をする要求を得ることができなかったので、代わりにhttpを使用することになりました。

var http = require("http"),
    zlib = require("zlib");

function getGzipped(url, callback) {
    // buffer to store the streamed decompression
    var buffer = [];

    http.get(url, function(res) {
        // pipe the response into the gunzip to decompress
        var gunzip = zlib.createGunzip();            
        res.pipe(gunzip);

        gunzip.on('data', function(data) {
            // decompression chunk ready, add it to the buffer
            buffer.Push(data.toString())

        }).on("end", function() {
            // response and decompression complete, join the buffer and return
            callback(null, buffer.join("")); 

        }).on("error", function(e) {
            callback(e);
        })
    }).on('error', function(e) {
        callback(e)
    });
}

getGzipped(url, function(err, data) {
   console.log(data);
});
51
WearyMonkey

encoding: nullrequestに渡すオプションに追加してみてください。これにより、ダウンロードした本文が文字列に変換されるのを避け、バイナリバッファーに保持します。

34
Iftah

@Iftahが言ったように、encoding: null

完全な例(エラー処理が少ない):

request = require('request');
zlib = require('zlib');

request(url, {encoding: null}, function(err, response, body){
    if(response.headers['content-encoding'] == 'gzip'){
        zlib.gunzip(body, function(err, dezipped) {
            callback(dezipped.toString());
        });
    } else {
        callback(body);
    }
});
27
Andrew Homeyer

実際には、リクエストモジュールがgzip応答を処理します。コールバック関数でbody引数をデコードするようにリクエストモジュールに指示するには、オプションで「gzip」をtrueに設定する必要があります。例で説明しましょう。

例:

var opts = {
  uri: 'some uri which return gzip data',
  gzip: true
}

request(opts, function (err, res, body) {
 // now body and res.body both will contain decoded content.
})

注:「応答」イベントで取得したデータはデコードされません。

これは私のために動作します。それが皆さんにも役立つことを願っています。

通常、リクエストモジュールの操作中に遭遇した同様の問題は、JSON解析にあります。説明させてください。リクエストモジュールで本文を自動的に解析し、body引数でJSONコンテンツを提供する場合。次に、オプションで「json」をtrueに設定する必要があります。

var opts = {
  uri:'some uri that provides json data', 
  json: true
} 
request(opts, function (err, res, body) {
// body and res.body will contain json content
})

参照: https://www.npmjs.com/package/request#requestoptions-callback

26
Sai Teja

https://Gist.github.com/miguelmota/9946206 で見られるように:

2017年12月の時点で、リクエストとリクエストプロミスの両方がそのまま使用できます。

var request = require('request')
  request(
    { method: 'GET'
    , uri: 'http://www.google.com'
    , gzip: true
    }
  , function (error, response, body) {
      // body is the decompressed response body
      console.log('server encoded the data as: ' + (response.headers['content-encoding'] || 'identity'))
      console.log('the decoded data is: ' + body)
    }
  )

さまざまな方法でgunzipを試し、エンコードに関するエラーを解決した後、より多くの 完全な回答 を作成しました。

これがあなたにも役立つことを願っています:

var request = require('request');
var zlib = require('zlib');

var options = {
  url: 'http://some.endpoint.com/api/',
  headers: {
    'X-some-headers'  : 'Some headers',
    'Accept-Encoding' : 'gzip, deflate',
  },
  encoding: null
};

request.get(options, function (error, response, body) {

  if (!error && response.statusCode == 200) {
    // If response is gzip, unzip first
    var encoding = response.headers['content-encoding']
    if (encoding && encoding.indexOf('gzip') >= 0) {
      zlib.gunzip(body, function(err, dezipped) {
        var json_string = dezipped.toString('utf-8');
        var json = JSON.parse(json_string);
        // Process the json..
      });
    } else {
      // Response is not gzipped
    }
  }

});
4
samwize

ここに私の2セントの価値があります。私は同じ問題を抱えていて、concat-stream

let request = require('request');
const zlib = require('zlib');
const concat = require('concat-stream');

request(url)
  .pipe(zlib.createGunzip())
  .pipe(concat(stringBuffer => {
    console.log(stringBuffer.toString());
  }));
3
Mark Robson

応答をgunzipする実際の例(ノードのリクエストモジュールを使用)

function gunzipJSON(response){

    var gunzip = zlib.createGunzip();
    var json = "";

    gunzip.on('data', function(data){
        json += data.toString();
    });

    gunzip.on('end', function(){
        parseJSON(json);
    });

    response.pipe(gunzip);
}

完全なコード: https://Gist.github.com/0xPr0xy/5002984

3
user764155

gotrequestの代替)を使用すると、次のことが簡単にできます。

got(url).then(response => {
    console.log(response.body);
});

解凍は、必要に応じて自動的に処理されます。

1
Sindre Sorhus