Link Search Menu Expand Document

Method: messages.getQuickReplies

Back to methods index

Fetch basic info about all existing quick reply shortcuts.

Parameters:

NameTypeDescriptionRequired
hashArray of long|stringHash for pagination, generated as specified here » (not the usual algorithm used for hash generation.)Optional

Return type: messages.QuickReplies

Can userbots use this method: YES

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

$messages_QuickReplies = $MadelineProto->messages->getQuickReplies(hash: [$long\|string, $long\|string], );