我正在尝试使用 botkit-sms 的 api.ai 中间件插件,我正在尝试调试源代码,为什么这不起作用,但如果你能提供一些输入将会很有帮助
库源代码https://github.com/krismuniz/botkit-sms/
var apiai = require('botkit-middleware-apiai')({
token: '...',
skip_bot: true // or false. If true, the middleware don't send the bot reply/says to api.ai
})
controller.middleware.receive.use(apiai.receive)
controller.hears('.*', 'message_received', apiai.hears, function (bot, message) {
console.log('received :: ' + message)
bot.reply(message, 'got the message')
})