gpt4 book ai didi

python-3.x - 在python中添加与telethon的联系

转载 作者:行者123 更新时间:2023-12-04 02:54:55 26 4
gpt4 key购买 nike

根据本教程,最近我尝试使用 Telethon 在 Telegram 中添加联系人:
1) Add new contact in api telegram python telethon
,我使用了这个代码:

contact = InputPhoneContact(client_id=0, phone='+989122725691', first_name="user",
last_name="test")
result = ImportContactsRequest(contacts=[contact])
print(result)

但是我在我的输出中得到了这个:
ImportContactsRequest(contacts=[InputPhoneContact(client_id=0, phone='+989122725691', first_name='user', last_name='test')])

我可以找出我的问题是什么,但是当我去我的 Telegram 应用程序时,这个联系人没有被添加。

最佳答案

您应该使用您的客户端实例调用 ImportContactsRequest。
例如

import random
contact = InputPhoneContact(client_id=random.randint(0,9999), phone='+98912******',
first_name="user",
last_name="test")
result = client(ImportContactsRequest(contacts=[contact]))
print(result.__dict__)

作者注

Official applications use random numbers , 和 we have had issues with it in the past .

关于python-3.x - 在python中添加与telethon的联系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53436883/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com