T
T
Timofey2021-03-01 09:10:40
Python
Timofey, 2021-03-01 09:10:40

How to make a button in a telegram bot that replaces the keyboard?

How to make a button in the telegram bot, as in the screenshot below? After pressing it, the keyboard is called to interact with the bot. Most likely, in order for the button to appear, you need to create such a keyboard, but I can’t find anything in the documentation about this and in the examples either. It is desirable, of course, if you tell me how to create it without using frameworks, so that I understand the essence.
603c8394c522a452832675.jpeg

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
soremix, 2021-03-01
@Carnage

for the button to appear, you need to create such a keyboard

Yes
Actually, the sendMessage method has a field reply_markupthat can contain
InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply

Let's take ReplyKeyboardMarkup, it creates such a keyboard. ReplyKeyboardMarkup consists of several optional fields describing the behavior and layout of the buttons and one required field keyboardwhich is
Array of Array of KeyboardButton

Well , KeyboardButton already contains a field textthat, oddly enough, defines the text, and others that change the behavior of the button.
import requests

CHAT_ID = 123
TOKEN = 123

keyboard = {'keyboard': }
payload = {'chat_id': CHAT_ID , 'text': 'Hello, world!', 'reply_markup': keyboard}

requests.post(f'https://api.telegram.org/bot{TOKEN}/sendMessage', json=payload)

M
MinTnt, 2021-03-01
@MinTnt

This is the method https://core.telegram.org/bots/api#replykeyboardmarkup
There are many examples on google just writing it in the request

H
HemulGM, 2021-03-01
@HemulGM

https://habr.com/ru/post/522720/
Why don't you all know how to google?!

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question