Node.js Gzip inflating - node-compress

时间:2011-08-01 23:11:44

标签: node.js gzip

我正在尝试从http://api.discogs.com/release/339901拉出一个gzip压缩的json文件。

我安装了https://github.com/waveto/node-compress,如果我向Stack Overflow API发出请求,一切正常,但是一旦我尝试请求discogs,我就会收到错误。

Assertion failed: (ret != Z_STREAM_ERROR), function GunzipInflate, file ../compress.cc, line 271.
Abort trap: 6

代码:

    var options = {
        host: 'api.discogs.com',
        port: 80,
        path: '/release/339901',
        headers: {
            "Accept-Encoding": "gzip"
        }
    };

    var options = {
        host: 'api.stackoverflow.com',
        port: 80,
        path: '/1.1/questions',
        headers: {
            "Accept-Encoding": "gzip"
        }
    }

    http.get(options, function(res){

        var body = [];
        var gunzip = new compress.Gunzip();
        gunzip.init();

        res.setEncoding('binary');

        res.on('data', function(chunk){
            body.push(gunzip.inflate(chunk, 'binary'));
        });

        res.on('end', function(){
            gunzip.end();
            callback(null, JSON.parse(body.join('')), response);
        });

        res.on('error', function(e){
            callback(e, null, response);
        });

    });



function callback(err, data, res) {
    if(err) {
        console.log(err);
    }
    else {
        res.end(JSON.stringify(data));
    }
}

有什么想法吗?

更新

似乎他们没有发送它gzipped。这是我最终使用的。

    var options = {
        host: 'api.discogs.com',
        port: 80,
        path: '/release/339901',
        headers: {
            "Accept-Encoding": "gzip"
        }
    };

    http.get(options, function(getRes){
        var body = "";

        getRes.on('data', function(chunk){
            body = body + chunk;
        });

        getRes.on('end', function(err, data){
            res.end(body);
        });
    });

1 个答案:

答案 0 :(得分:3)

似乎api.discogs.com没有返回gzip编码的响应。

您应首先检查内容编码标头:

if (res.headers['content-encoding'] === 'gzip') { ... }

请求gzip编码的响应(“Accept-Encoding”:“gzip”)并不保证。

您可以这样验证:

console.log(JSON.stringify(res.headers));

res.on('data', function(chunk){
    console.log(chunk.toString());
});