firebase云功能错误:连接econnrefuse



我正在尝试使用Firebase云功能根据其API创建一个Kik Messenger机器人。我正在使用大火计划。我正在尝试回复我的机器人收到的消息。我可以在API上接收消息,但是当我尝试回复它们时,我会遇到错误。错误不是来自请求回调。我在Firebase控制台上看到了错误。

错误:连接Econnrefuse 72.14.246.44:443

在object.exports._errnoexception(util.js:1018:11)
at enforts._exceptionwithHostport(util.js:1041:20)
在tcpConnectWrap.afterConnect [as onComplete](net.js:1086:14)
代码:'Econnrefused',
errno:" econnrefused',
syscall:"连接",
地址:'72 .14.246.44',
端口:443

请求Kik Messenger API在本地和远程节点/Express应用程序上工作。我尝试在云功能上使用Kik节点,但结果相同。到目前为止,我发现的是https://auth.kik.com解决了亚马逊,https://api.kik.com解决了Google Hosting。我认为他们还为其API使用Firebase Cloud功能。难道他们可能会被阻止入站请求吗?这是我尝试过的示例代码。

exports.messagepost = functions.https.onRequest((req, res) => {
  // Gives the error below
  // {
  //  Error: connect ECONNREFUSED 72.14.246.44:443
  //   at Object.exports._errnoException (util.js:1018:11)
  //   at exports._exceptionWithHostPort (util.js:1041:20)
  //   at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1086:14)
  //   code: 'ECONNREFUSED',
  //   errno: 'ECONNREFUSED',
  //   syscall: 'connect',
  //   address: '72.14.246.44',
  //   port: 443
  // }
  request.post({
    uri: 'https://api.kik.com/v1/message',
    body: JSON.stringify({
      foo: 'bar'
    }),
    json: true,
    auth:{
      user:'{API_USER}',
      pass:'{API_KEY}'
    },
    headers: {
      'Content-Type'   : 'application/json'
    }
  }, (error, response) => {
    if (error) console.error(error);
    else console.log('Response: ', response.headers);
    res.status(200).end('OK');
  });
});
exports.messageget = functions.https.onRequest((req, res) => {
  // Gives the error below
  // {
  //  Error: connect ECONNREFUSED 72.14.246.44:443
  //   at Object.exports._errnoException (util.js:1018:11)
  //   at exports._exceptionWithHostPort (util.js:1041:20)
  //   at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1086:14)
  //   code: 'ECONNREFUSED',
  //   errno: 'ECONNREFUSED',
  //   syscall: 'connect',
  //   address: '72.14.246.44',
  //   port: 443
  // }
  request.get({
    uri: 'https://api.kik.com/v1/message',
    auth:{
      user:'{API_USER}',
      pass:'{API_KEY}'
    }
  }, (error, response) => {
    if (error) console.error(error);
    else console.log('Response: ', response.headers);
    res.status(200).end('OK');
  });
});
exports.verificationget = functions.https.onRequest((req, res) => {
  // Runs with no errors
  request.get({
    uri: 'https://auth.kik.com/verification/v1/check',
    qs: {
      u: 'username',
      d: 'hostname',
      debug: true
    },
    body: JSON.stringify({ data: 'debugsigneddata' }),
    headers: {
      'Content-Type'   : 'application/json' ,
      'Content-Length' : JSON.stringify({ data: 'debugsigneddata' }).length
    },
    auth:{
      user:'{API_USER}',
      pass:'{API_KEY}'
    }
  }, (error, response) => {
    if (error) console.error(error);
    else console.log('Response: ', response.headers);
    res.status(200).end('OK');
  });
});
exports.verificationpost = functions.https.onRequest((req, res) => {
  // Runs with no errors
  request.post({
    uri: 'https://auth.kik.com/verification/v1/check',
    qs: {
      u: 'username',
      d: 'hostname',
      debug: true
    },
    body: JSON.stringify({ data: 'debugsigneddata' }),
    headers: {
      'Content-Type'   : 'application/json' ,
      'Content-Length' : JSON.stringify({ data: 'debugsigneddata' }).length
    },
    auth:{
      user:'{API_USER}',
      pass:'{API_KEY}'
    }
  }, (error, response) => {
    if (error) console.error(error);
    else console.log('Response: ', response.headers);
    res.status(200).end('OK');
  });
});

我在使用云函数实施OAuth2代币交换时遇到了类似的问题,而不是运行专用服务器。

这可能没有帮助,而是要解决此错误,在我的情况下,我不得不将https://协议添加到我的帖子URL时。

如果其他人遇到此问题,可能值得检查您的帖子URL的编写正确。

相关内容

  • 没有找到相关文章

最新更新