1.4 KiB
1.4 KiB
title | description |
---|---|
messages.getChannelDialogs | Get channel/supergruop dialogs |
Method: messages.getChannelDialogs
Get channel/supergruop dialogs
Parameters:
Name | Type | Required | Description |
---|---|---|---|
offset | CLICK ME int | Yes | Offset |
limit | CLICK ME int | Yes | Number of results to return |
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, })