我想使用用户帐户阻止诸如user或bot这样的实体。我找不到任何方法。另外,最好有一些用于解除实体阻塞的方法。
答案 0 :(得分:3)
您需要使用所谓的raw API。 Searching for "block"带我们去BlockRequest
,上面有一个例子:
from telethon.sync import TelegramClient
from telethon import functions, types
with TelegramClient(name, api_id, api_hash) as client:
result = client(functions.contacts.BlockRequest(
id='username'
))
print(result)