From b286f7607da00db6007a4355606413aa7487f8f5 Mon Sep 17 00:00:00 2001 From: Lonami Date: Thu, 22 Feb 2018 20:55:56 +0100 Subject: [PATCH] It's impossible to get more than 10k members --- readthedocs/extra/examples/chats-and-channels.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/readthedocs/extra/examples/chats-and-channels.rst b/readthedocs/extra/examples/chats-and-channels.rst index 44ee6112..95fa1b1e 100644 --- a/readthedocs/extra/examples/chats-and-channels.rst +++ b/readthedocs/extra/examples/chats-and-channels.rst @@ -121,6 +121,13 @@ a fixed limit: offset += len(participants.users) +.. note:: + + It is **not** possible to get more than 10,000 members from a + group. It's a hard limit impossed by Telegram and there is + nothing you can do about it. Refer to `issue 573`__ for more. + + Note that ``GetParticipantsRequest`` returns `ChannelParticipants`__, which may have more information you need (like the role of the participants, total count of members, etc.) @@ -130,6 +137,7 @@ __ https://lonamiwebs.github.io/Telethon/methods/channels/get_participants.html __ https://lonamiwebs.github.io/Telethon/types/channel_participants_filter.html __ https://lonamiwebs.github.io/Telethon/constructors/channel_participants_search.html __ https://lonamiwebs.github.io/Telethon/constructors/channels/channel_participants.html +__ https://github.com/LonamiWebs/Telethon/issues/573 Recent Actions