Untitled
Anonymous
python
12/18/2022 9:39 AM
396 B
28
Indexable
from telethon.sync import TelegramClient
from telethon import functions, types
with TelegramClient(name, api_id, api_hash) as client:
result = client(functions.messages.GetCommonChatsRequest(
user_id='username',
max_id=0,
limit=100
))
print(result.stringify())Editor is loading...