Link Search Menu Expand Document

Method: stories.getStoriesByID

Back to methods index

Obtain full info about a set of stories by their IDs.

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerPeer where the stories were postedOptional
idArray of intStory IDsYes

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->getStoriesByID(peer: $InputPeer, id: [$int, $int], );