yii2-bot-telegram
yii2-bot-telegram copied to clipboard
yii2 bot telegram
Resulted in a `400 Bad Request` response: {"ok":false,"error_code":400,"description":"Bad Request: MEDIA_CAPTION_TOO_LONG"} Странная ошибка, ранее такого не было. С чем это связано?
Hi. I'm see error in getFileUrl method in [this](https://github.com/akbarjoudi/yii2-bot-telegram/blob/e3e6dc02076e694f5b28ebe503326b34cb663989/Telegram.php#L789) line. Correct code at this line is ``` $body = $this->getFile($params); ``` right?
Hello! Can you tell me what is included in the release? What does premium added mean? https://github.com/akbarjoudi/yii2-bot-telegram/releases/tag/3.1.6 Author, please write descriptions for releases. If this is difficult for you to...
Tell me why the method does not work in your library at the moment class TelegramController extends Controller { public $enableCsrfValidation = false; public function actionWebhook(){ $telegram = Yii::$app->telegram; if...
Hello I tried to use forward function and it's working but also throws 500 Internal Server Error. My code: `public function actionGuide($message) { $response = Yii::$app->telegram->forwardMessage([ 'chat_id' => $message->chat['id'], 'from_chat_id'...
When I update composer, I get the error 'syntax error, unexpected :' vendor/aki/yii2-bot-telegram/base/TelegramBase.php:66 protected function getInput(): ?Input
https://github.com/akbarjoudi/yii2-bot-telegram/blob/5d1a4071875691e2f8c3578b598fd3fc572b348d/base/Response.php#L37-L44 This code works ok for getUpdates. But if you try to use editMessageText for example, you'll get exception. I have been to downgrade to make my code works.
hi i am trying to use your dependency in my project but when trying to call Yii :: $ app-> telegram-> sendMessage ([ 'chat_id' => $ chat_id, 'text' => 'test',...
To solve the issue, I added some code locally in aki\telegram\types\Document class: 1) Added $_thumbnail property after $_thumb 2) Added magic methods: public function getThumbnail() { return $this->_thumbnail; } public...