我想使用 Telegram 的新“附近的人”功能。我想用 python 做,所以我找到了Telethon。然后,我查看了 Telegram API 并找到了contacts.getLocated()
方法。
https://core.telegram.org/method/contacts.getLocated
但是我认为 Telethon 库中没有这种方法。或者至少我没有找到如何调用它。
from telethon import functions
functions.contacts.getLocated()
给我:
AttributeError: module 'telethon.tl.functions.contacts' has no attribute 'getLocated'
我可以以任何其他方式调用此方法吗?我什至必须为此使用 Telethon 吗?