1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Telegram/Data-retrieval-and-settings/Download-file.md

43 lines
878 B
Markdown
Raw Normal View History

---
sidebar_position: 5
---
# Download file
Download file from Telegram servers
2024-07-10 12:58:29 +02:00
`Function DownloadFile(Val Token, Val FileID) Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Token |
| FileID | --fileid | String | File ID for downloading |
Returns: BinaryData - file's binary data
2024-07-10 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
2024-07-31 20:55:27 +02:00
FileID = "CQACAgIAAx0EcNsaZQACGJNmk7UQ0Hl2KVCNMftHtaNRBoSLegACeVMAAp8joUj_Pam75oqJxTUE";
Token = "6129457865:AAFyzNYOAFbu...";
Result = OPI_Telegram.DownloadFile(Token, FileID);
```
```sh title="CLI command example"
oint telegram DownloadFile --token "6129457865:AAFyzNYOAFbu..." --fileid "AgACAgIAAx0EcNsaZQACE1lmXraQ7CsFNZ2Jrqimp9A0ir3mQQACmtkxG77-sUoMcnd_RvALsgEAAwIAA3MAAzUE"
```
```json title="Result"
2024-06-09 00:01:18 +02:00
<Binary file's binary data>
```