Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个简单的自动回复脚本。我做了一个无限循环,每秒请求client.get_message_history(entity, limit=10)一次。(希望这一秒不会超过 10 条新消息)然后检查是否有任何新消息并发送我的回复client.send_message
client.get_message_history(entity, limit=10)
client.send_message
但我认为每秒向电报服务器发送垃圾邮件并不是一个好主意。可能有没有不必要的垃圾邮件更有效的方法?
您应该使用更新。每次发生更改时,一个更新实例都会到达您为接收更新而注册的回调。这可能会对你有所帮助