如何使用用户帐户屏蔽实体?

时间:2020-02-11 08:34:01

标签: python telegram telethon

我想使用用户帐户阻止诸如user或bot这样的实体。我找不到任何方法。另外,最好有一些用于解除实体阻塞的方法。

1 个答案:

答案 0 :(得分:3)

您需要使用所谓的raw APISearching 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)