如何获得频道的会员电报

时间:2020-01-03 06:40:15

标签: python python-3.x telegram telethon

我使用了client.iter_participants(channel, aggressive=True),但是在30k中只有4k用户 并使用

while True:
    participants = client(GetParticipantsRequest(
        my_channel, ChannelParticipantsSearch(''), offset, limit,
        hash=0
    ))
    if not participants.users:
        break
    all_participants.extend(participants.users)
    offset += len(participants.users)

相同

0 个答案:

没有答案