我如何通过电视节目 API python 电报向我的联系人发送消息

how i can send message to my contact whit telethon API python telegram

当我使用此命令查看联系人时:

result = client.invoke(GetContactsRequest(""))
print(result)

我看到了这个结果:

(contacts.contacts (ID: 0x6f8b8cb2) = (contacts=['(contact (ID: 0xf911c994) = (user_id=334412783, mutual=False))'], users=['(user (ID: 0x2e13f4c3) = (is_self=None, contact=True, mutual_contact=None, deleted=None, bot=None, bot_chat_history=None, bot_nochats=None, verified=None, restricted=None, min=None, bot_inline_geo=None, id=334412783, access_hash=-8113372651091717470, first_name=khood, last_name=None, username=Mosafer575, phone=19132594548, photo=(userProfilePhoto (ID: 0xd559d8c8) = (photo_id=1436291966805583785, photo_small=(fileLocation (ID: 0x53d69076) = (dc_id=1, volume_id=803110857, local_id=86736, secret=1232685751818265379)), photo_big=(fileLocation (ID: 0x53d69076) = (dc_id=1, volume_id=803110857, local_id=86738, secret=3801220285627155105)))), status=(userStatusOffline (ID: 0x8c703f) = (was_online=2017-06-16 13:09:57)), bot_info_version=None, restriction_reason=None, bot_inline_placeholder=None, lang_code=None))']))

现在我如何向这位朋友发送一条消息,其中包含 first_name 我的朋友或 user_id 或 phone 或我联系人中的其他详细信息??? 我看到这个 page 但我没有注意到。 请为此使用简单的代码

如果是您的联系人,您可以像使用用户名一样使用 phone 号码:

client.send_message('+xx123456789', 'hello')

旧答案:

users=['(user (ID: 0x2e13f4c3) ...`

users 列表中有您要与之交谈的用户。所以你得到了那个用户:

user = result.users[0]

然后你可以调用.send_message(user, 'your message')

https://whosebug.com/content/img/progress-dots.gif Its easy to show all contact and send messages

from telethon.tl.types import InputPhoneContact
from telethon.tl.functions.contacts import ImportContactsRequest

导入后

contacts = client(GetContactsRequest(0))
client.send_message(contact[<You can use indexing>],'<messages>')

You can send message using contact id

如果发送消息所有合同号...

all_contacts = await client(GetContactsRequest(hash=0))
for i in range(len(all_contacts.users)):
   if all_contacts.users[i].phone != None:
      await client.send_message(all_contacts.users[i].phone, 'hello')
   else:
      await client.send_message(all_contacts.users[i].username, 'hello')