I manage a channel that give links/information to users. Every time I update the content of the channel I have to update index of the channel in a post (message) manually.
Please teach me how to update a telegram post using telegram bot in python. Thanks a lots!
2
Answers
The Bot API provides the method
editMessageText
that you can use to edit the text of a message. Every library that provides a wrapper for the Bot API should also provide a wrapper for this method (in every language, not only in Python).You need to get the message id and use https://core.telegram.org/bots/api#editmessagetext