R
R
Ruslan Makarov2018-09-09 18:21:56
Bots
Ruslan Makarov, 2018-09-09 18:21:56

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"}
]
] 
}
}

Thanks in advance!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Seva Shpun, 2018-09-26
@SevaShpun

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 question

Ask a Question

731 491 924 answers to any question