mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 18:18:30 +01:00
1.8 KiB
1.8 KiB
title | description | grand_parent | parent | image | redirect_from |
---|---|---|---|---|---|
messages.uploadImportedMedia | Upload a media file associated with an [imported chat, click here for more info »](https://core.telegram.org/api/import). | Telegram RPC API | Methods | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_uploadImportedMedia.html |
Method: messages.uploadImportedMedia
Upload a media file associated with an imported chat, click here for more info ».
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | The Telegram chat where the media will be imported | Optional |
import_id | long | Identifier of a history import session, returned by messages.initHistoryImport | Yes |
file_name | string | File name | Optional |
media | MessageMedia, Update, Message or InputMedia | Media metadata | Optional |
Return type: MessageMedia
Can bots use this method: NO
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();
$MessageMedia = $MadelineProto->messages->uploadImportedMedia(peer: $InputPeer, import_id: $long, file_name: 'string', media: $InputMedia, );