1.4 KiB
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
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
Code | Type | Description |
---|---|---|
400 | LOCATION_INVALID | The provided location is invalid |