尝试在 php 中使用 pimax/fb-messenger-php 管理快速回复,但它不起作用。我的代码是下一个:
` $one= array();
$one['content_type'] = 'text';
$one['title'] = 'one';
$one['payload'] = 'one';
$two= array();
$two['content_type'] = 'text';
$two['title'] = 'two';
$two['payload'] = 'two';
$res = array($one, $two);
$bot->send(new QuickReply($message['sender']['id'], "Hi there!",$res)); `
你能帮我吗?