Answer the question
In order to leave comments, you need to log in
How to execute a specific command when pressing the BACK button?
How to execute the command / start when pressing such a button, for example
Answer the question
In order to leave comments, you need to log in
bot = telebot.TeleBot(config.token)
...
@bot.message_handler(content_types=["text"]) # Обрабатываем все сообщения типа "текст". Нажатие кнопки == отправка сообщения с тектом кнопки.
def check_text_message(message): # Имя функции может быть любое
if message.text == "Назад": # Эмоджи со стрелкой вставить не даёт, но надо чтобы проверяемое сообщение в точности было равно надписи на кнопке
do_something (message) # Аргумент передаем, если надо что-либо сделать с сообщением, например, отправить ответ
catch a message on the backend, determine which command to run, run it programmatically.
something like this.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question