Answer the question
In order to leave comments, you need to log in
How to add a bot response when selecting a button in the telegram bot menu?
Hey!
There is a code that displays buttons in a telegram bot...
How to add a bot response when a user presses a button?
{
"chat_id": "{{bot_new_message.channel_id}}",
"text": "lalalallaalala.",
"reply_markup": {
"one_time_keyboard": true,
"resize_keyboard": true,
"selective": true,
"keyboard": [
[
{"text": "lalala 1."}
],
[
{"text": "lalalala 2."}
],
[
{"text": "kakakaa 3"}
]
]
}
}
Answer the question
In order to leave comments, you need to log in
personally, I usually create an array of all buttons, like so:
$but = [
"выбор_товара" => "Выбор товара",
"категория" => "Категория",
"купить" => "Купить",
"отмена" => "Отмена",
"назад" => "Назад"
];
// затем
switch($text) {
case $but["выбор_товара"]:
// тут отправка текста для соответствующей кнопки
break;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question