2017-01-02 19:50:37 +01:00
|
|
|
---
|
2017-01-19 23:02:27 +01:00
|
|
|
title: messages.sendMedia
|
|
|
|
description: messages.sendMedia parameters, return type and example
|
2017-01-02 19:50:37 +01:00
|
|
|
---
|
2017-01-19 23:02:27 +01:00
|
|
|
## Method: messages.sendMedia
|
2017-01-02 19:50:37 +01:00
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|silent|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|background|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|clear\_draft|[Bool](../types/Bool.md) | Optional|
|
2017-03-11 19:54:51 +01:00
|
|
|
|peer|[InputPeer](../types/InputPeer.md) | Yes|
|
2017-01-02 19:50:37 +01:00
|
|
|
|reply\_to\_msg\_id|[int](../types/int.md) | Optional|
|
2017-03-11 19:54:51 +01:00
|
|
|
|media|[InputMedia](../types/InputMedia.md) | Yes|
|
2017-01-02 19:50:37 +01:00
|
|
|
|reply\_markup|[ReplyMarkup](../types/ReplyMarkup.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
### Return type: [Updates](../types/Updates.md)
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
$MadelineProto = new \danog\MadelineProto\API();
|
|
|
|
if (isset($token)) {
|
|
|
|
$this->bot_login($token);
|
|
|
|
}
|
|
|
|
if (isset($number)) {
|
|
|
|
$sentCode = $MadelineProto->phone_login($number);
|
|
|
|
echo 'Enter the code you received: ';
|
|
|
|
$code = '';
|
|
|
|
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
|
|
|
|
$code .= fgetc(STDIN);
|
|
|
|
}
|
|
|
|
$MadelineProto->complete_phone_login($code);
|
|
|
|
}
|
|
|
|
|
|
|
|
$Updates = $MadelineProto->messages->sendMedia(['silent' => Bool, 'background' => Bool, 'clear_draft' => Bool, 'peer' => InputPeer, 'reply_to_msg_id' => int, 'media' => InputMedia, 'reply_markup' => ReplyMarkup, ]);
|
2017-02-13 04:33:06 +01:00
|
|
|
```
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```
|
|
|
|
Updates = messages.sendMedia({silent=Bool, background=Bool, clear_draft=Bool, peer=InputPeer, reply_to_msg_id=int, media=InputMedia, reply_markup=ReplyMarkup, })
|
|
|
|
```
|
|
|
|
|