How can I fetch all scheduled messages from my client in a particular group? I know how to access to messages that the client already send but I’m not able to find the scheduled ones.
I’m currently running a python application client and I am using telethon
2
Answers
If you want to check if a message has been sent via schedule just check is
from_schedule
parameter.This will return
True
orFalse
You can use
GetScheduledHistoryRequest
to do so https://tl.telethon.dev/methods/messages/get_scheduled_history.htmlfrom the example :