在python telethon中加入频道的最简单方法

时间:2017-07-09 12:19:27

标签: python telegram telethon

我阅读了retrieve an user-namejoin a channel的远程培训文档。经过一些尝试,我写了这段代码:

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

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

1 个答案:

答案 0 :(得分:3)

首次升级电视节目

from telethon.tl.functions.messages import ImportChatInviteRequest
updates = client(ImportChatInviteRequest('hash_invite _channel'))