Method: messages.sendQuickReplyMessages
Send a quick reply shortcut ».
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | The peer where to send the shortcut (users only, for now). | Optional |
shortcut_id | int | The ID of the quick reply shortcut to send. | Optional |
id | Array of int | Specify a subset of messages from the shortcut to send; if empty, defaults to all of them. | Yes |
Return type: Updates
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();
$Updates = $MadelineProto->messages->sendQuickReplyMessages(peer: $InputPeer, shortcut_id: $int, id: [$int, $int], );