GitHub Probot:ERROR probot:Bad Request

时间:2018-03-25 07:47:57

标签: github github-api probot

我正在为Probot开发一个应用程序。我已经在文件夹中配置了.env已经下载的PEM文件。

以下是文件index.js的内容。

module.exports = (robot) => {
robot.on('issues.opened', async context => {  
    const params = context.issue({ body: 'Hello World!' })
    return context.github.issues.createComment(params)
})
}

但我收到了这个错误。

  ERROR probot: Bad Request
  Error: Bad Request
      at Request.callback (/media/ashutosh/ASHUTOSH ( PERSONAL )/Gsoc/probot/practice/ashutosh-probot/node_modules/superagent/lib/node/index.js:696:15)
      at IncomingMessage.parser (/media/ashutosh/ASHUTOSH ( PERSONAL )/Gsoc/probot/practice/ashutosh-probot/node_modules/superagent/lib/node/index.js:906:18)
      at emitNone (events.js:111:20)
      at IncomingMessage.emit (events.js:208:7)
      at endReadableNT (_stream_readable.js:1064:12)
      at _combinedTickCallback (internal/process/next_tick.js:138:11)
      at process._tickDomainCallback (internal/process/next_tick.js:218:9)

如何解决此问题?

1 个答案:

答案 0 :(得分:1)

此错误不是因为Probot,而是GitHub上的错误结束。

此错误可能是因为您在创建新的GitHub应用程序时输入了错误的用户授权回调URL。更新此问题将解决问题。

Create new GitHub Application