TlSharp 使用 TlRequestGetParticipants 获取频道成员的最大数量只有 10K有没有办法突破这个限制

问题描述

while (offset < (res.FullChat as TLChannelFull).ParticipantsCount)
            {
                var pReq = new TLRequestGetParticipants()
                {
                    Channel = new TLInputChannel() { AccessHash = chat.AccessHash.Value,ChannelId = chat.Id },Filter = new TLChannelParticipantsRecent() { },//Filter = new TLChannelParticipantsSearch() { Q = "a" },Limit = 200,Offset = offset,};
                var pRes = await client.SendRequestAsync<TLChannelParticipants>(pReq);
                //result.Users.AddRange(pRes.users.lists.Cast<TLUser>());
                offset += 200;
                await Task.Delay(500);
            }

我用这种方法只能获得10K用户,我无法突破这个限制

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)