我没有使用机器人 API。我正在使用 Telegram API 发送消息。消息很容易发送,但问题发生在 19 个用户之后。在第 20 个用户,我收到 PeerFloodError。即使在搜索了很多之后,我也没有找到任何具体的限制,并且使用 sleep 也不起作用。请提出解决此问题的方法。
代码
def send_message(root2, client):
totalcount = 0
for user in users:
if totalcount >= len(users):
root2.destroy()
break
if totalcount % 15 == 0 and totalcount != 0:
print("Waiting for one minute...")
time.sleep(60)
if user not in users2 or user not in users3:
totalcount += 1
entity = client.get_entity(user)
client.send_message(entity, message_str)
time.sleep(8)