MadelineProtoDocs/docs/API_docs/methods/stories.readStories.md
2024-05-01 14:53:46 +02:00

1.5 KiB

title description grand_parent parent image redirect_from
stories.readStories Mark all stories up to a certain ID as read, for a given peer; will emit an [updateReadStories](../constructors/updateReadStories.html) update to all logged-in sessions. Telegram RPC API Methods https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/stories_readStories.html

Method: stories.readStories

Back to methods index

Mark all stories up to a certain ID as read, for a given peer; will emit an updateReadStories update to all logged-in sessions.

Parameters:

Name Type Description Required
peer Username, chat ID, Update, Message or InputPeer The peer whose stories should be marked as read. Optional
max_id int Mark all stories up to and including this ID as read Optional

Return type: Vector_of_int

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

$Vector_of_int = $MadelineProto->stories->readStories(peer: $InputPeer, max_id: $int, );