MadelineProto/old_docs/API_docs_v40/methods/messages_getImportantHistory.md

1.1 KiB

title description
messages_getImportantHistory messages_getImportantHistory parameters, return type and example

Method: messages_getImportantHistory

Back to methods index

Parameters:

Name Type Required
peer InputPeer Required
max_id int Required
min_id int Required
limit int Required

Return type: messages_Messages

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_Messages = $MadelineProto->messages->getImportantHistory(['peer' => InputPeer, 'max_id' => int, 'min_id' => int, 'limit' => int, ]);