我正在尝试将http-post-say.coffee
脚本添加到 Heroku 上托管的 hubot 应用程序中。
文档表明,一旦您添加脚本,它就会创建'/hubot/say'
接受以下格式的发布请求的路由。
curl -X POST http://localhost:8080/hubot/say -d message=lala -d room='#dev'
我添加了脚本并修改了网址,但收到以下错误:
Cannot POST /hubot/say
我的下一步是添加一些依赖项。我注意到使用的其他应用程序robot.router.post
具有这些依赖项。
"htmlparser": "1.7.6",
"connect": "2.3.4",
"connect_router": "1.8.6",
"scoped-http-client": "0.9.7"
我部署了我的更改,Cannot POST /hubot/say
但当我尝试走那条路线时我仍然收到。
有什么我想念的吗?我对 Node.js 或 hubot 不是很熟悉。