telethon获取群组用户列表
直接看代码
from telethon.tl.functions.channels import GetParticipantsRequest
from telethon.tl.types import ChannelParticipantsSearch
async def get_group_members(group):
members = await client(GetParticipantsRequest(
channel=group,
filter=ChannelParticipantsSearch(''),
offset=0,
limit=100,
hash=0
))
print(f"群组 {group.id} 的成员列表:")
for member in members.users:
print(f"ID: {member.id}, 用户名: {member.username}")
return members.users
版权申明
本文系作者 @Mrjun 原创发布在懒猪儿Blog站点。未经许可,禁止转载。
暂无评论数据