1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-11 21:39:37 +01:00
MadelineProto/old_docs/API_docs_v72/methods/upload_getWebFile.md

72 lines
1.6 KiB
Markdown
Raw Normal View History

2017-11-15 13:41:58 +01:00
---
title: upload.getWebFile
2018-03-23 16:23:49 +01:00
description: Download a file through telegram
2017-11-15 13:41:58 +01:00
---
## Method: upload.getWebFile
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Download a file through telegram
2017-11-15 13:41:58 +01:00
### 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|
2017-11-15 13:41:58 +01:00
### Return type: [upload\_WebFile](../types/upload_WebFile.md)
### Can bots use this method: **NO**
### Errors this method can return:
| Error | Description |
|----------|---------------|
|LOCATION_INVALID|The provided location is invalid|
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-11-15 13:41:58 +01:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-11-15 13:41:58 +01:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-11-15 13:41:58 +01:00
$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-11-15 13:41:58 +01:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/upload.getWebFile`
Parameters:
location - Json encoded InputWebFileLocation
offset - Json encoded int
limit - Json encoded int
Or, if you're into Lua:
```
upload_WebFile = upload.getWebFile({location=InputWebFileLocation, offset=int, limit=int, })
```