在1.5版本中,我这样做了:
from telethon.tl.functions.channels import ExportInviteRequest
from telethon.tl.types import InputChannel, InputPeerChannel
ChannelLink = Client(ExportInviteRequest(
InputPeerChannel(channel_id=ChannelID,
access_hash=ChannelHash))).link
但是它现在不起作用:
ImportError: cannot import name 'ExportInviteRequest'
现在怎么办?
答案 0 :(得分:1)
原始API可能会在库的次要版本之间进行更改,因此您尝试访问的功能不再像以前那样存在。
无论何时发生这种情况,您都可以search for the method again找出the new one is的位置:
from telethon.tl.functions.messages import ExportChatInviteRequest
用法仍然相同:
from telethon.sync import TelegramClient
with TelegramClient(name, api_id, api_hash) as client:
client(functions.messages.ExportChatInviteRequest(
ChannelID
))
您也不需要自己构造InputPeer
,它是自动完成的。