MadelineProtoDocs/docs/API_docs/methods/upload_getWebFile.md
2019-06-19 18:42:02 +02:00

1.4 KiB

title description image
upload.getWebFile Download a file through telegram https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: upload.getWebFile

Back to methods index

Download a file through telegram

Parameters:

Name Type Description Required
location InputWebFileLocation The file Yes
offset int The offset in bytes Yes
limit int The number of bytes to fetch Yes

Return type: upload_WebFile

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();

$upload_WebFile = $MadelineProto->upload->getWebFile(['location' => InputWebFileLocation, 'offset' => int, 'limit' => int, ]);

Or, if you're into Lua:

upload_WebFile = upload.getWebFile({location=InputWebFileLocation, offset=int, limit=int, })

Errors this method can return:

Error Description
LOCATION_INVALID The provided location is invalid