检查私人频道邀请 link 在电视节目中是否 invalid/expired

check if a private channel invite link is invalid/expired in telethon

当您尝试在电报客户端中使用过期 link 访问私人频道时,您将收到此消息 expired link

有没有办法在不加入频道的情况下检查频道邀请 link 是否无效或过期?

您可以使用 checkChatInvite:

from telethon.sync import TelegramClient
from telethon import functions, types

with TelegramClient(name, api_id, api_hash) as client:
    result = client(functions.messages.CheckChatInviteRequest(
        hash='A4LmkR23G0IGxBE71zZfo1'
    ))
    print(result.stringify())