Method: stories.getStoriesArchive
Fetch the story archive » of a peer we control.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | Peer whose archived stories should be fetched | Optional |
offset_id | int | Offsets for pagination, for more info click here | Optional |
limit | int | Maximum number of results to return, see pagination | Optional |
Return type: stories.Stories
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();
$stories_Stories = $MadelineProto->stories->getStoriesArchive(peer: $InputPeer, offset_id: $int, limit: $int, );