Link Search Menu Expand Document

Method: invokeAfterMsg

Back to methods index

Invokes a query after successful completion of one of the previous queries.

Parameters:

NameTypeDescriptionRequired
msg_idlongMessage identifier on which a current query dependsYes
query!XThe query itselfYes

Return type: X

Can bots use this method: YES

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

$X = $MadelineProto->invokeAfterMsg(msg_id: $long, query: $!X, );