MadelineProtoDocs/old_docs/API_docs_v82/methods/messages_sendMultiMedia.md
2019-03-12 13:25:41 +01:00

2.3 KiB

title description image
messages.sendMultiMedia Send an album https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: messages.sendMultiMedia

Back to methods index

Send an album

Parameters:

Name Type Description Required
silent Bool Disable notifications? Optional
background Bool Disable background notification? Optional
clear_draft Bool Clear draft? Optional
peer Username, chat ID, Update, Message or InputPeer Where to send the album Optional
reply_to_msg_id int Reply to message by ID Optional
multi_media Array of InputSingleMedia The album Yes

Return type: Updates

Can bots use this method: YES

MadelineProto Example:

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
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], ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a bot:

POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline

Parameters:

  • method - messages.sendMultiMedia
  • params - {"silent": Bool, "background": Bool, "clear_draft": Bool, "peer": InputPeer, "reply_to_msg_id": int, "multi_media": [InputSingleMedia], }

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.sendMultiMedia

Parameters:

silent - Json encoded Bool

background - Json encoded Bool

clear_draft - Json encoded Bool

peer - Json encoded InputPeer

reply_to_msg_id - Json encoded int

multi_media - Json encoded array of 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}, })