40

我正在尝试发送一个简单的 HTTP POST 请求,检索响应正文。以下是我的代码。我正进入(状态

错误:标头检查不正确

在“zlib.gunzip”方法中。我是 node.js 的新手,我很感激任何帮助。

;

    fireRequest: function() {

    var rBody = '';
    var resBody = '';
    var contentLength;

    var options = {
        'encoding' : 'utf-8'
    };

    rBody = fSystem.readFileSync('resources/im.json', options);

    console.log('Loaded data from im.json ' + rBody);

    contentLength = Buffer.byteLength(rBody, 'utf-8');

    console.log('Byte length of the request body ' + contentLength);

    var httpOptions = {
        hostname : 'abc.com',
        path : '/path',
        method : 'POST',
        headers : {
            'Authorization' : 'Basic VHJhZasfasNWEWFScsdfsNCdXllcjE6dHJhZGVjYXJk',
            'Content-Type' : 'application/json; charset=UTF=8',
            // 'Accept' : '*/*',
            'Accept-Encoding' : 'gzip,deflate,sdch',
            'Content-Length' : contentLength
        }
    };

    var postRequest = http.request(httpOptions, function(response) {

        var chunks = '';
        console.log('Response received');
        console.log('STATUS: ' + response.statusCode);
        console.log('HEADERS: ' + JSON.stringify(response.headers));
        // response.setEncoding('utf8');
        response.setEncoding(null);
        response.on('data', function(res) {
            chunks += res;
        });

        response.on('end', function() {
            var encoding = response.headers['content-encoding'];
            if (encoding == 'gzip') {

                zlib.gunzip(chunks, function(err, decoded) {

                    if (err)
                        throw err;

                    console.log('Decoded data: ' + decoded);
                });
            }
        });

    });

    postRequest.on('error', function(e) {
        console.log('Error occured' + e);
    });

    postRequest.write(rBody);
    postRequest.end();

}
4

4 回答 4

24

response.on('data', ...)可以接受 a Buffer,而不仅仅是纯字符串。连接时,您将错误地转换为字符串,然后无法进行压缩。您有 2 个选项:

1) 收集数组中的所有缓冲区,并在end事件中使用Buffer.concat(). 然后在结果上调用 gunzip。

2)使用.pipe()并将响应传递给 gunzip 对象,如果您希望将结果存储在内存中,则将其输出传递给文件流或字符串/缓冲区字符串。

此处讨论了选项 (1) 和 (2):http: //nickfishman.com/post/49533681471/nodejs-http-requests-with-gzip-deflate-compression

于 2013-10-18T06:37:56.087 回答
2

在我们的例子中,我们添加'accept-encoding': 'gzip,deflate'到标题和代码开始工作(解决方案归功于 Arul Mani):

var httpOptions = {
    hostname : 'abc.com',
    path : '/path',
    method : 'POST',
    headers : {
        ...
        'accept-encoding': 'gzip,deflate'
    }
};
于 2020-03-03T22:55:54.757 回答
1

我在尝试循环时遇到此错误,fs.readdirSync但有一个.Dstore文件,因此对其应用了解压缩功能。

小心只通过.zip/gz

import gunzip from 'gunzip-file';

const unzipAll = async () => {
  try {
    const compFiles = fs.readdirSync('tmp')
    await Promise.all(compFiles.map( async file => {
      if(file.endsWith(".gz")){
        gunzip(`tmp/${file}`, `tmp/${file.slice(0, -3)}`)
      }
    }));
  }
  catch(err) {
    console.log(err)
  }
}
于 2020-04-18T05:53:16.613 回答
0

除了@Nitzan Shaked 的回答,这可能与Node.js 版本有关。

我所经历的是https.request(OP 使用http.request,但它的行为可能相同)已经在后台解压缩了数据,因此一旦将块累积到缓冲区中,剩下的就是调用buffer.toString()(假设 utf8 作为示例)。我自己在另一个答案中经历过它,它似乎与 Node.js 版本有关。

我将通过一个类似工作代码的现场演示来结束这个答案,这对于未来的读者可能会派上用场(它查询 StackExchange API,获取 gzip 压缩块,然后解压缩它):

  • 它包含一个适用于 14.16.0(当前 StackBlitz 版本)的代码——正如我所描述的,它已经在后台解压缩了数据——但不适用于 Node.js 15.13.0,
  • 它包含一个注释掉的代码,适用于 Node.js 15.13.0 后者,但不适用于 14.16.0。
于 2021-09-20T14:03:23.810 回答