Answer the question
In order to leave comments, you need to log in
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.
Answer the question
In order to leave comments, you need to log in
for the button to appear, you need to create such a keyboard
reply_markup
that can containInlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply
keyboard
which isArray of Array of KeyboardButton
text
that, 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)
This is the method https://core.telegram.org/bots/api#replykeyboardmarkup
There are many examples on google just writing it in the request
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question