Отправка сообщения в чат с ботом, добавляем клавиатуру снизу без сворачивания клавиатуры. Пример JSON
09.12.2021
Send message to chat with bot with fixed keyboard. Example JSON.
{"chat_id" : 123456789,
"text" : "Just a message",
"reply_markup": {"keyboard": [[{"text": "Button 1"}, {"text": "Button 2"}, {"text": "Button 3"}], [{"text": "Button 4"}, {"text": "Button 5"}], [{"text": "Button 5"}]]}
}
Send message to chat with bot with one time keyboard. Example JSON.
{"chat_id" : 123456789,
"text" : "Just a message",
"reply_markup": {"keyboard": [[{"text": "Button 1"}, {"text": "Button 2"}, {"text": "Button 3"}], [{"text": "Button 4"}, {"text": "Button 5"}], [{"text": "Button 5"}]],"one_time_keyboard": true}
}