1.0 KiB
1.0 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.getPinnedDialogs | Get pinned dialogs | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_getPinnedDialogs.html |
Method: messages.getPinnedDialogs
Get pinned dialogs
Return type: messages.PeerDialogs
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
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.PeerDialogs = $MadelineProto->messages->getPinnedDialogs();
Or, if you're into Lua:
messages.PeerDialogs = messages.getPinnedDialogs({})
Errors
Code | Type | Description |
---|---|---|
400 | FOLDER_ID_INVALID | Invalid folder ID |