MadelineProtoDocs/old_docs/API_docs_v82/methods/messages_uploadMedia.md

56 lines
1.5 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: messages.uploadMedia
description: Upload a file without sending it to anyone
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: messages.uploadMedia
[Back to methods index](index.md)
Upload a file without sending it to anyone
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | Nothing | Optional|
|media|[MessageMedia, Update, Message or InputMedia](../types/InputMedia.md) | The media to upload | Optional|
### Return type: [MessageMedia](../types/MessageMedia.md)
### Can bots use this method: **YES**
2019-05-04 12:15:39 +02:00
### MadelineProto Example ([now async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
2018-12-26 02:56:50 +01:00
```php
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
2019-03-12 13:25:41 +01:00
define('MADELINE_BRANCH', '');
2018-12-26 02:56:50 +01:00
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$MessageMedia = $MadelineProto->messages->uploadMedia(['peer' => InputPeer, 'media' => InputMedia, ]);
```
Or, if you're into Lua:
```lua
MessageMedia = messages.uploadMedia({peer=InputPeer, media=InputMedia, })
```
### Errors this method can return:
| Error | Description |
|----------|---------------|
|BOT_MISSING|This method can only be run by a bot|
|MEDIA_INVALID|Media invalid|
|PEER_ID_INVALID|The provided peer id is invalid|