skip to Main Content

TLSharp Fetch Group List Issue – Telegram API

I can't fetch the full list of groups, the response returns only new groups my code : var dialogs = (TLDialogsSlice)await client.GetUserDialogsAsync(); var chats = dialogs.Chats .Where(c => c.GetType() == typeof(TLChat)) .Cast<TLChat>(); Console.WriteLine("Count : " + chats.Count()); i use this…

VIEW QUESTION
Back To Top
Search