码迷,mamicode.com
首页 > 其他好文 > 详细

记录下 hubot相关

时间:2017-04-12 11:23:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:rip   .com   参考   脚本   targe   function   dap   pac   convert   

适配器工厂
https://hubot.github.com/docs/adapters/
自己写适配器
https://hubot.github.com/docs/adapters/development/

 

需要注意的是,scripts/ 下的脚本必须是 .coffee 或者 .js 格式的,而且必须暴露一个接受 robot 参数的函数!
我们还是先打开 scripts/example.coffee 看看吧!

 

// coffee
module.exports = (robot) ->
// js
module.exports = function(robot) {}

 

在这个函数里面,我们可以利用 robot.hearrobot.responserobot.sendrobot.reply 等 api 为不同的「输入」给出不同的「输出」!
我们还可以用 robot.http(url).get() 等方法来发出 http 请求!这样我们的机器人就可以有更强大的交互能力了!

想知道更多 api 的用法的话,可以参考文档:https://hubot.github.com/docs/scripting/

参考资料

https://hubot.github.com/

记录下 hubot相关

标签:rip   .com   参考   脚本   targe   function   dap   pac   convert   

原文地址:http://www.cnblogs.com/jackchen001/p/6698009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!