TelegramBot / Api

Native PHP Wrapper for Telegram BOT API
MIT License
1.06k stars 324 forks source link

resize_keyboard don't working #354

Closed lairen213 closed 11 months ago

lairen213 commented 2 years ago

Hi! I have some problem, I need the text in the buttons to be fully displayed, for this I use resize_keyboard - but it does not work (regardless of whether it is false or true).

Снимок экрана 2021-11-17 в 01 29 44 Снимок экрана 2021-11-17 в 01 28 28
Ramil001 commented 1 year ago
$keyboard = new \TelegramBot\Api\Types\ReplyKeyboardMarkup(
    array(
        array("◀️ Повернутись назад"),
    )
    , true, $resizeKeyboard = true);

$bot->sendMessage($id,$mes, null, false, null, $keyboard);