使用GitHub的Probot应用时,我遇到了身份验证问题。当我使用npm start运行应用程序时,我会得到
github: Github request: GET /app/installations - 404 Not Found
和
ERROR probot: {"message":"Integration not found", "documentation_url": "https://developer.github.com/v3"}
我后来发现我遇到这个问题的原因是因为我在GitHub Enterprise帐户上工作,需要在我的.env文件中添加一个额外的变量:
GHE_HOST=github.your_company.com
重启我的应用后,我不再遇到这些问题了。