I use TLSharp and the telegram API to work with the telegram. My problem is that when I try to get my list of dialogs using messages.getDialogs , it does not return a complete list of my active dialogs, gives channel identifiers, and also skips some other groups. in which I judge for reasons that I do not know.
for example, it returns about 20 chat identifiers when I have about 25 groups and 15 channels, but I never had a list of these chats. What is the method of getting a complete list of conversations, including their chat_id and title?
I want to get a complete list of my dialogs, including channels and groups, not user dialogs. I give this value offset = 0, max_id = 0, limit = 100in messages.getDialogs .
source
share