MadelineProto/docs/API_docs/methods/messages_getDialogs.md

1.1 KiB

title description
messages.getDialogs messages.getDialogs parameters, return type and example

Method: messages.getDialogs

Back to methods index

Parameters:

Name Type Required
exclude_pinned Bool Optional
offset_date int Required
offset_id int Required
offset_peer InputPeer Required
limit int Required

Return type: messages_Dialogs

Example:

$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
    $this->bot_login($token);
}
if (isset($number)) {
    $sentCode = $MadelineProto->phone_login($number);
    echo 'Enter the code you received: ';
    $code = '';
    for ($x = 0; $x < $sentCode['type']['length']; $x++) {
        $code .= fgetc(STDIN);
    }
    $MadelineProto->complete_phone_login($code);
}

$messages_Dialogs = $MadelineProto->messages->getDialogs(['exclude_pinned' => Bool, 'offset_date' => int, 'offset_id' => int, 'offset_peer' => InputPeer, 'limit' => int, ]);