在 Heroku 上托管的 Hubot 网站主页?
Website home for Hubot hosted on Heroku?
我目前在一个免费的 Heroku 帐户上托管了一个 Hubot。我想要一个网站,它可以作为一个端点,从机器人所在的聊天应用程序外部访问 Hubot。
有什么办法吗?
谢谢
Hubot 有一个 built-in HTTP 监听器:https://hubot.github.com/docs/scripting/#http-listener
如果您使用 Heroku,则可以将 HTTP 请求直接发送到您的 Heroku 域 your_app.herokuapp.com/hubot
在 httpd.coffee
脚本中查看你的 Hubot src/scripts
文件夹 - 它已经设置了一些 HTTP 示例端点,并且很容易理解。
我目前在一个免费的 Heroku 帐户上托管了一个 Hubot。我想要一个网站,它可以作为一个端点,从机器人所在的聊天应用程序外部访问 Hubot。
有什么办法吗?
谢谢
Hubot 有一个 built-in HTTP 监听器:https://hubot.github.com/docs/scripting/#http-listener
如果您使用 Heroku,则可以将 HTTP 请求直接发送到您的 Heroku 域 your_app.herokuapp.com/hubot
在 httpd.coffee
脚本中查看你的 Hubot src/scripts
文件夹 - 它已经设置了一些 HTTP 示例端点,并且很容易理解。