2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: messages.sendMultiMedia
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Send an album of media
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2019-12-27 18:46:25 +01:00
|
|
|
redirect_from: /API_docs/methods/messages_sendMultiMedia.html
|
2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
# Method: messages.sendMultiMedia
|
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Send an album of media
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Description | Required |
|
|
|
|
|----------|---------------|-------------|----------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|silent|[Bool](../types/Bool.md) | Whether to send the album silently (no notification triggered) | Optional|
|
|
|
|
|background|[Bool](../types/Bool.md) | Send in background? | Optional|
|
|
|
|
|clear\_draft|[Bool](../types/Bool.md) | Whether to clear [drafts](https://core.telegram.org/api/drafts) | Optional|
|
|
|
|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | The destination chat | Optional|
|
|
|
|
|reply\_to\_msg\_id|[int](../types/int.md) | The message to reply to | Optional|
|
2019-06-23 13:07:51 +02:00
|
|
|
|multi\_media|Array of [InputSingleMedia](../types/InputSingleMedia.md) | The album | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
### Return type: [Updates](../types/Updates.md)
|
|
|
|
|
|
|
|
### Can bots use this method: **YES**
|
|
|
|
|
|
|
|
|
|
|
|
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
|
|
|
|
|
|
|
|
|
|
|
```php
|
|
|
|
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:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
Updates = messages.sendMultiMedia({silent=Bool, background=Bool, clear_draft=Bool, peer=InputPeer, reply_to_msg_id=int, multi_media={InputSingleMedia}, })
|
|
|
|
```
|
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
### Errors
|
2019-08-15 20:25:16 +02:00
|
|
|
|
2019-09-02 17:41:28 +02:00
|
|
|
| Code | Type | Description |
|
|
|
|
|------|----------|---------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|400|MEDIA_EMPTY|The provided media object is invalid|
|
2019-09-02 17:41:28 +02:00
|
|
|
|400|MEDIA_INVALID|Media invalid|
|
2019-12-27 17:48:04 +01:00
|
|
|
|400|MULTI_MEDIA_TOO_LONG|Too many media files for album|
|
2019-09-02 17:41:28 +02:00
|
|
|
|400|PEER_ID_INVALID|The provided peer id is invalid|
|
2019-12-27 17:48:04 +01:00
|
|
|
|400|RANDOM_ID_EMPTY|Random ID empty|
|
2019-08-15 20:25:16 +02:00
|
|
|
|
|
|
|
|