Home > Software design >  how to get chat folders? - telethon
how to get chat folders? - telethon

Time:12-26

I'm trying to get the chat folders using telethon

I'm not sure what to do and there's nothing i found in the documentation, can anyone help? it will be appreciated <3

CodePudding user response:

Folders are called Filters in the full api, you can get them with GetDialogFilters

req = await client(functions.messages.GetDialogFiltersRequest())

The req will be of type DialogFilter which can be either of:

  • DialogFilterDefault: ignore it, it was added as premium feature to sort "All" tab

  • DialogFilter: This is a Folder basically, it contains title, included chats, pinned, excluded, etc..

Get the existing fields at auto generated TL site or their info @official TG site

  • Related