Link Search Menu Expand Document

Method: messages.readEncryptedHistory

Back to methods index

Marks message history within a secret chat as read.

Parameters:

NameTypeDescriptionRequired
peerSecret chat ID, Update, EncryptedMessage or InputEncryptedChatSecret chat IDYes
max_dateintMaximum date value for received messages in historyOptional

Return type: Bool

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();

$Bool = $MadelineProto->messages->readEncryptedHistory(peer: $InputEncryptedChat, max_date: $int, );