如何让hubot列出当前篝火聊天室中的所有用户?

时间:2012-11-07 18:05:48

标签: javascript coffeescript bots hubot campfire

我有一个在篝火聊天室里运行的hubot(https://github.com/github/hubot)。

我正在尝试创建一个脚本,显示聊天室中所有已登录的用户。

默认hubot show users命令似乎找不到所有已登录的用户。

非工作伪代码

module.exports = (robot) ->    
  robot.respond /users$/i, (msg) ->
    for user in robot.room.users
        msg.respond user.name + "is logged in"

1 个答案:

答案 0 :(得分:1)

尝试通过Campfire room API发送请求,它会列出当前房间内的所有用户。