Answer the question
In order to leave comments, you need to log in
How to make buttons in a bot?
How to make buttons instead of a keyboard?
As I understand it, the API has been updated and now inline buttons are as follows:
Code for creating an array of buttons:
$inline_keyboard = array('inline_keyboard' =>
array(
array(
array(
'text' => 'Русский', 'callback_data' => '/set_language ru'
),
array(
'text' => 'English', 'callback_data' => '/set_language en'
),
array(
'text' => $button_cancel, 'callback_data' => '/cancel'
),
),
),
);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question