MadelineProtoDocs/old_docs/API_docs_v40/methods/messages_getChannelDialogs.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

1.5 KiB

title description image
messages.getChannelDialogs Get channel/supergruop dialogs https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: messages.getChannelDialogs

Back to methods index

Get channel/supergruop dialogs

Parameters:

Name Type Description Required
offset int Offset Yes
limit int Number of results to return Yes

Return type: messages_Dialogs

Can bots use this method: YES

MadelineProto Example:

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$messages_Dialogs = $MadelineProto->messages->getChannelDialogs(['offset' => int, 'limit' => int, ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a bot:

POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline

Parameters:

  • method - messages.getChannelDialogs
  • params - {"offset": int, "limit": int, }

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.getChannelDialogs

Parameters:

offset - Json encoded int

limit - Json encoded int

Or, if you're into Lua:

messages_Dialogs = messages.getChannelDialogs({offset=int, limit=int, })