MadelineProtoDocs/old_docs/API_docs_v23/methods/messages.sendMultiMedia.md

2.3 KiB

title description image redirect_from
messages.sendMultiMedia Send an album of media https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_sendMultiMedia.html

Method: messages.sendMultiMedia

Back to methods index

Send an album of media

Parameters:

Name Type Description Required
silent Bool Whether to send the album silently (no notification triggered) Optional
background Bool Send in background? Optional
clear_draft Bool Whether to clear drafts Optional
peer Username, chat ID, Update, Message or InputPeer The destination chat Optional
reply_to_msg_id int The message to reply to Optional
multi_media Array of InputSingleMedia The medias to send Yes

Return type: Updates

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

$Updates = $MadelineProto->messages->sendMultiMedia(['silent' => Bool, 'background' => Bool, 'clear_draft' => Bool, 'peer' => InputPeer, 'reply_to_msg_id' => int, 'multi_media' => [InputSingleMedia, InputSingleMedia], ]);

Or, if you're into Lua:

Updates = messages.sendMultiMedia({silent=Bool, background=Bool, clear_draft=Bool, peer=InputPeer, reply_to_msg_id=int, multi_media={InputSingleMedia}, })

Errors

Code Type Description
400 CHAT_ADMIN_REQUIRED You must be an admin in this chat to do this
400 MEDIA_EMPTY The provided media object is invalid
400 MEDIA_INVALID Media invalid
400 MULTI_MEDIA_TOO_LONG Too many media files for album
400 PEER_ID_INVALID The provided peer id is invalid
400 RANDOM_ID_EMPTY Random ID empty
406 AUTH_KEY_DUPLICATED An auth key with the same ID was already generated