Questions tagged [botman]

The open-source PHP chatbot development framework for cross platform chat- and voice-applications.

BotMan is a framework agnostic PHP library that is designed to simplify the task of developing innovative bots for multiple messaging platforms, including Slack, Telegram, Microsoft Bot Framework, Nexmo, HipChat, Facebook Messenger, WeChat and many more.

61 questions
1
vote
0 answers

Facebook Webhook Url verification is returning with additional string on botman studio

I am trying to verify my webhook url, however I am getting this error Here is my code: $config = [ 'facebook' => [ 'token' => 'page-token', 'app_secret' => 'app-secret', 'verification' =>…
1
vote
0 answers

How to make dynamic keybord (not button) with Botman.io framework in Telegram

How can i make dynamic keybord (not button) with Botman.io framework in Telegram ? I try this code $arr = array('test1','test2','test3'); $buttons = array_map(function($name) { return KeyboardButton::create($name); },…
1
vote
1 answer

How i can get user access token in Dialogflow?

I am trying to find the users access token in the dialogflow because I am trying to associate it with botman.io but it is not working this is the code : $botman = app('botman'); $dialogflow =…
1
vote
0 answers

Botman Studio don't reply

I started a new project with Botman Studio composer create-project --prefer-dist botman/studio test then I do update cd test composer up and then installed drivers : facebook and telegram . composer require botman/driver-facebook composer require…
1
vote
2 answers

BotMan and Symfony 5.1 - Install botman in subdirectory

I'm newbie with Symfony. I created a Symfony App and I have a BotMan folder inside my Symfony root directory, so I want to integrate that bot in my App. My directory structure goes like this: my_symfony_project/ bin/ config/ migrations/ ... …
Mariela
  • 134
  • 2
  • 13
1
vote
1 answer

How do I persist data collect from Botman to MySQL

I am using laravel and botman to create a simple issue tracking chatbot. I'm struggling to persist data to MySQL from a Botman reply. Any suggestions?
1
vote
0 answers

Botman conversation don't save data to mysql db

Hi guys I write to you because I implemented a conversation in my bot telegram developed with Botman but unfortunately I can't save the data of the object created in my mysql db. In the Laravel log check the error "local.ERROR: SQLSTATE [HY000]…
Gabriele
  • 11
  • 2
1
vote
2 answers

Botman, powered by dialogflow, is not replying to my messages

I am learning how to create Dialogflow based NLP chatbot using PHP and Botman.io . I wrote a simple code that should be working, but the botman is not replying to my messages. I have walked through the documentation and official online course from…
1
vote
2 answers

Botman studio 2.0 don't work in Ubuntu server

Does anyone try on Botman studio 2.0 with Ubuntu server 16.0? I tried it for telegram chatbot but it didn't work. I can download the botman studio and driver without any error. When I try to use php artisan serve, I can see Laravel development…
1
vote
1 answer

OctoberCMS and BotMan

I want to integrate a chatbot (BotMan version 2.0) into an existing OctoberCMS project , here is what I did till now : 1- I added BotMan to the projct using the following command : composer require botman/botman 2- I created a routes.php file in…
1
vote
0 answers

Codeigniter - Botman - reply method does not work

I'm using Botman 2.0 and Codeigniter 3.1.6 My owner server with HTTPS & FB Webhook setup successfully. How do I have to setup my project with codeigniter? Because, I set the FB Webhook setup successfully, but, when I type "hi" on messenger this not…
wilfredonoyola
  • 485
  • 5
  • 12
0
votes
0 answers

Botman - Error sending payload: (#100) No matching user found

What could be causing the "BotMan\Drivers\Facebook\Exceptions\FacebookException: Error sending payload: (#100) No matching user found" error in my Botman implementation? I have subscribed to the "messages" and "messaging_postbacks" webhook fields…
Vincent
  • 1
  • 1
0
votes
0 answers

Where would I put a Twilio Demo in Botman

I have BotMan Studio installed and can run Tinker on my Windows 10 PC I want to experiment with using Twilio, I looked up the documenatation and see how to set up the code, but need to know where to put it. I am pretty sure it wouldn't go in…
0
votes
0 answers

how to fix Botman error with conversation?

BotMan Version: 2.6 PHP Version: 8.1 Symfony Version : 5.4 Cache Driver: Symfony Cache i'm using botman for telegram bot. everything is ok with botman just the conversation is not working The question is asked, but when I answer, I see such an…
0
votes
0 answers

Why singleton class lose self::$instance moving to next wizard?

In laravel 9.47 / botman 2.7.8 / laravel-translatable 6.3 app I make some singleton class for working with translatable functionality when moving from one botman conversation to other with all locate functionality in class AppLocale.php. When user…
mstdmstd
  • 2,195
  • 17
  • 63
  • 140