Method: messages.savePreparedInlineMessage
Save a prepared inline message, to be shared by the user of the mini app using a web_app_send_prepared_message event
Parameters:
Name | Type | Description | Required |
---|---|---|---|
result | InputBotInlineResult | The message | Yes |
user_id | Username, chat ID, Update, Message or InputUser | The user to whom the web_app_send_prepared_message event event will be sent | Optional |
peer_types | Array of InlineQueryPeerType | Types of chats where this message can be sent | Optional |
Return type: messages.BotPreparedInlineMessage
Can userbots use this method: YES
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();
$messages_BotPreparedInlineMessage = $MadelineProto->messages->savePreparedInlineMessage(result: $InputBotInlineResult, user_id: $InputUser, peer_types: [$InlineQueryPeerType, $InlineQueryPeerType], );