The "telethon" library has a "get messages" method, with which you can get a message and information about it, including comments.
But can you get reactions?
https://core.telegram.org/method/messages.getMessageReactionsList
The "telethon" library has a "get messages" method, with which you can get a message and information about it, including comments.
But can you get reactions?
https://core.telegram.org/method/messages.getMessageReactionsList
3
Answers
I couldn’t find a way to do this via telethon.
However, you can get a list of reactions to messages using pyrogram: GetMessageReactionsList
Something like that:
UPD
Found an easier way:
I recently was looking for reactions as well and discovered the
GetMessagesReactionsRequest()
function from the Telegram API methods list:Where ID is the message ID. There might be a more efficient solution, as soon as I found it I’ll let you know.
In
telethon 1.25.4
you can get it easily: