自动删除电报机器人

deleted automatically telegram bot

我创建了一个电报机器人,它通过选择开始来转发视频文件。我希望它们在 1 小时后自动删除。谁能帮帮我?

context.bot.sendDocument(chat_id=update.message.chat_id, document='https://t.me/mychanel/2',caption="1") context.bot.sendDocument(chat_id=update.message.chat_id, document='https://t.me/mychanel/3', caption="2") context.bot.sendDocument(chat_id=update.message.chat_id, document='https://t.me/mychanel/4',caption="3")

我怎样才能删除自动那些?☝☝☝☝

你可以做到 message =context.bot.sendDocument(chat_id=update.message.chat_id, document='https://t.me/mychanel/2',caption="1")

并在数据结构、列表或字典中保存带有时间戳的message.message_id,之后你可以安排一个周期性的线程来做 bot.delte_message(message_id,chat_id) 过期视频