M
M
MarkBelousov5672021-04-05 16:15:18
Python
MarkBelousov567, 2021-04-05 16:15:18

How to make a message pinned in a telegram bot (aiogram, python)?

I will have all commands displayed on /help and I would like this to be a sticky message.
Please tell me how to do it?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
AlmazKayum, 2021-04-05
@AlmazKayum

To begin with, you definitely need to pay attention to the pinChatMessage method
https://core.telegram.org/bots/api#pinchatmessage
And then use it in your tasks.

A
AlexAlex229, 2022-04-05
@AlexAlex229

Method for telebot:

bot.pin_chat_message(chat_id = message.chat.id, message_id = message.message_id, disable_notification=True)

The last parameter is optional, it disables the pin notification

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question