Closed elephantux closed 7 years ago
I think what I found solution
class Chatbot extends BaseHandler
{
public function __construct()
{
$this->createBot(config('fb-messenger.app_token'));
}
...
But how to provide fb-messenger.verify_token to Bot?
Hi, verify token can setup on .env
file or config
otherwise you can use to Config::set
to change it.
\Config::set('fb-messenger. verify_token', 'another verify token');
I want use messenger for several fb pages. Is it possible to dynamically add tokens?