我一直在关注Facebook Developer上的webhook设置: https://developers.facebook.com/docs/messenger-platform/getting-started/webhook-setup
我一直在 heroku 服务器上部署我的 index.js 文件,它所说的只是错误,无法获取(参考链接在这里(......应用程序服务器上的错误
除了我的唯一令牌之外,我没有更改任何内容,实际上 heroku 日志显示事件正在注册(参考链接在这里( heroku 日志
非常感谢一些帮助,以了解我如何摆脱此错误网页,以便我可以使用此应用程序链接作为信使聊天机器人的回调URL。
您需要在应用中添加指向"/"的路由
app.get('/', (request, response) => {
return response.send('Ping!');
});