core icon indicating copy to clipboard operation
core copied to clipboard

PHP Telegram Bot based on the official Telegram Bot API

Results 85 core issues
Sort by recently updated
recently updated
newest added

Before ~0.37 they were correctly handled by Genericcommand, I think since now my code for 'stalking' other bot commands in Genericcommand doesn't generate any reports. The same in private chat...

bug
low priority

This library should not require directly monolog and guzzle. Instead, it should require psr/log and psr/http-client Of course, monolog and guzzle could be stille be required in required-dev (since you...

code design
feature request

I would like to modify the DB, and its classes, to add the field `bot_id int (10) unsigned` to manage multiple bots with the same 12 main tables. Then you...

feature request

Not sure if i'm missing something but if i give any command path of custom commands they dont get loaded because this function assumes that the namespace is below Longman\TelegramBot\Commands

feature request

Maybe use any ORM? I want use PostgreSQL database, but DB.php inludes only MySQL syntax. I Want write it feature. What do you think about it?

feature request

Currently, to avoid using another database or flat files I am doing this: ```php $settings = new Conversation( $this->telegram->getBotId(), $this->getMessage()->getChat()->getId(), 'settings' ); $settings->notes['key'] = 'value'; $settings->update(); ``` Will be nice...

feature request

In file core/src/Commands/SystemCommands/CallbackqueryCommand.php We have this method : public function execute() { //$callback_query = $this->getUpdate()->getCallbackQuery(); //$user_id = $callback_query->getFrom()->getId(); //$query_id = $callback_query->getId(); //$query_data = $callback_query->getData(); // Call all registered callbacks. foreach...

feature request

### Required Information - Operating system: ubuntu 16.04 - PHP version: 7.1 - PHP Telegram Bot version: Latest version - Using MySQL database: yes - MySQL version: 5.7.19 - Update...

bug

For example: Show info to the users that bot is disabled while letting requests from Admin ID to go through. #505 will help with this

feature request

Basically webhook can output a json containing a request like sendmessage and when Telegram API enters it it will instantly execute that call. This can be particularly useful if the...

feature request