MadelineProto/docs/API_docs/methods/upload_getWebFile.md

72 lines
1.6 KiB
Markdown
Raw Normal View History

---
title: upload.getWebFile
2018-03-23 16:23:49 +01:00
description: Download a file through telegram
---
## Method: upload.getWebFile
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Download a file through telegram
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|location|[CLICK ME InputWebFileLocation](../types/InputWebFileLocation.md) | Yes|The file|
|offset|[CLICK ME int](../types/int.md) | Yes|The offset in bytes|
|limit|[CLICK ME int](../types/int.md) | Yes|The number of bytes to fetch|
### Return type: [upload\_WebFile](../types/upload_WebFile.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **NO**
2017-11-03 17:39:50 +01:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|LOCATION_INVALID|The provided location is invalid|
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
```
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, ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-07-23 16:11:02 +02:00
2017-07-23 16:34:36 +02:00
2017-07-23 16:11:02 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/upload.getWebFile`
Parameters:
location - Json encoded InputWebFileLocation
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
offset - Json encoded int
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
limit - Json encoded int
2017-07-23 16:40:54 +02:00
2017-07-23 16:11:02 +02:00
2017-08-20 19:09:52 +02:00
Or, if you're into Lua:
```
upload_WebFile = upload.getWebFile({location=InputWebFileLocation, offset=int, limit=int, })
```