4

我阅读了 Telethon 文档以检索用户名加入频道。经过一些尝试,我写了这段代码:

result = client.invoke(ResolveUsernameRequest('XXXX'))
channel = InputChannel(result.peer.channel_id, result.chats[0].access_hash)
client.invoke(JoinChannelRequest(channel))

此代码工作正常,但我想知道是否有更好或更简单的方法?

4

1 回答 1

4

第一次升级电视马拉松

from telethon.tl.functions.messages import ImportChatInviteRequest
updates = client(ImportChatInviteRequest('hash_invite _channel'))
于 2017-08-12T04:49:38.853 回答