我正在为我的应用程序使用Express.js,向Adobe Analytics API发出发布请求时收到错误消息。

我尝试添加server.timeout,但无法解决问题...

这是错误消息:


  错误:读取ECONNRESET
      在exports._errnoException(util.js:1028:11)
      在TLSWrap.onread(net.js:572:26)代码:'ECONNRESET',errno:'ECONNRESET',syscall:'read'


这是失败的代码:

  pullClassifications(req) {
    const dfd = q.defer();
    const { username, password, payload } = req;
    const data = wsse({username: username, password: password});
    const wsseHeaders = {'X-WSSE': data.toString({ nonceBase64: true })};
    const options = {
      'method': 'post',
      'headers': wsseHeaders,
      'content-type': 'application/json',
      'body': payload,
      'json': true,
      'url': 'https://api.omniture.com/admin/1.4/rest/?method=ReportSuite.GetClassifications'
    }

    request(options, function(err, response, body) {
      if(response.statusCode == 200) {
        dfd.resolve(body);
      } else {
        dfd.reject({statusCode: response.statusCode, body: body});
      }
    })
    return dfd.promise;
  }


更新:
我尝试使用Postman发布相同的请求,并且该请求有效,并在630000毫秒内返回了响应。

此错误的原因是什么,有什么办法可以解决?

最佳答案

您是否尝试过在请求中添加timeout选项?为什么可以使用本机Promise来使用Q Promise库?旧的NodeJs版本?

https://github.com/request/request#timeouts

    const options = {
      'timeout': 120 * 60 * 1000 //(120 seconds)
      'method': 'post',
      'headers': wsseHeaders,
      'content-type': 'application/json',
      'body': payload,
      'json': true,
      'url': 'https://api.omniture.com/admin/1.4/rest/?method=ReportSuite.GetClassifications'
    }

    request(options, function(err, response, body) {...});

09-18 07:31