1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
messages.readChannelHistory | Mark channel/supergroup history as read | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: messages.readChannelHistory
Mark channel/supergroup history as read
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | The channel/supergruop | Optional |
max_id | int | Maximum message ID to mark as read | Yes |
Return type: Bool
Can bots use this method: YES
MadelineProto Example:
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->messages->readChannelHistory(['peer' => InputPeer, 'max_id' => int, ]);
Or, if you're into Lua:
Bool = messages.readChannelHistory({peer=InputPeer, max_id=int, })