MadelineProtoDocs/old_docs/API_docs_v40/methods/messages_readChannelHistory.md
2018-04-01 13:24:46 +02:00

1.5 KiB

title description
messages.readChannelHistory Mark channel/supergroup history as read

Method: messages.readChannelHistory

Back to methods index

Mark channel/supergroup history as read

Parameters:

Name Type Required Description
peer Username, chat ID, Update, Message or InputPeer Optional The channel/supergruop
max_id int Yes Maximum message ID to mark as read

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');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$Bool = $MadelineProto->messages->readChannelHistory(['peer' => InputPeer, 'max_id' => int, ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a bot:

POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline

Parameters:

  • method - messages.readChannelHistory
  • params - {"peer": InputPeer, "max_id": int, }

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.readChannelHistory

Parameters:

peer - Json encoded InputPeer

max_id - Json encoded int

Or, if you're into Lua:

Bool = messages.readChannelHistory({peer=InputPeer, max_id=int, })