Codeigniter - Botman - 不回复的对话方法

时间:2017-11-26 18:14:27

标签: php codeigniter chatbot facebook-messenger-bot

我正在使用Botman 2.0Codeigniter 3.1.6

Ngrok& FB Webhook设置成功..

一个简单的听到&回复方法,工作良好:

$this->botman->hears('foo','HelloWorld@handleFoo');
$this->botman->hears('hello',function($bot){
    $bot->reply('bye~');
 });

enter image description here

但是当使用Botman's conversation method时,Bot没有回复...我的会话代码如下:

$this->load->library('BotConversations/OnboardingConversation');
$this->botman->hears('sup', function($bot) {
    $bot->startConversation(OnboardingConversation);
});
// Listen
$this->botman->listen();

enter image description here

无论如何,我已按照Botman's Cache conf指南通过Codeigniter方法设置缓存

以下是我的一些测试文件:

感谢您的帮助!感谢....

1 个答案:

答案 0 :(得分:0)

现在一切正常,我忽略了一个简单的语法问题...... 更新了我的代码如下:

-loop-unroll