标签: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.hear
、robot.response
、robot.send
、robot.reply
等 api 为不同的「输入」给出不同的「输出」!
我们还可以用 robot.http(url).get()
等方法来发出 http 请求!这样我们的机器人就可以有更强大的交互能力了!
想知道更多 api 的用法的话,可以参考文档:https://hubot.github.com/docs/scripting/
参考资料
标签:rip .com 参考 脚本 targe function dap pac convert
原文地址:http://www.cnblogs.com/jackchen001/p/6698009.html