在API Telegram Python Telethon中添加新联系人
如何在Telethon python的联系人中保存号码?
from telethon import TelegramClientfrom telethon.tl.functions.contacts import GetContactsRequest
from telethon.tl.types import InputPeerUser
client = TelegramClient('arta0', api_id, api_hash)
client.connect()
#number=+19133704541
#name='ali karimi'
我需要添加什么模块?
回答:
您可以这样创建联系人:
contact = InputPhoneContact(client_id = 0, phone = "+12345678", first_name="ABC", last_name="abc")result = client.invoke(ImportContactsRequest([contact], replace=True))
要创建新联系人,您需要为client_id传递0。
以上是 在API Telegram Python Telethon中添加新联系人 的全部内容, 来源链接: utcz.com/qa/408490.html