1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00
Files
OpenIntegrations/docs/en/md/Telegram/Data-retrieval-and-settings/Download-file.mdx
Vitaly the Alpaca (bot) ef6aa6fd7e Main build (Jenkins)
2025-04-17 22:47:59 +03:00

63 lines
1.6 KiB
Plaintext
Vendored

---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Download file
Download file from Telegram servers
`Function DownloadFile(Val Token, Val FileID) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| FileID | --fileid | String | ✔ | File ID for downloading |
Returns: BinaryData - file's binary data
<br/>
:::tip
Method at API documentation: [getFile](https://core.telegram.org/bots/api#getfile)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
FileID = "CQACAgIAAx0EcNsaZQACP5toAUu6TTtYbpD7en8NHfKBNYgZlQACGHoAArgXCUjlwAABQfx983M2BA";
Token = "6129457865:AAFyzNYOAFbu...";
Result = OPI_Telegram.DownloadFile(Token, FileID);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint telegram DownloadFile \
--token "***" \
--fileid "CQACAgIAAx0EcNsaZQACPoZn8nSym5FWf47KH-9cRKlM3Z34cwAC0GQAAuQLkEtwjT8YaEy30jYE"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint telegram DownloadFile ^
--token "***" ^
--fileid "CQACAgIAAx0EcNsaZQACPoZn8nSym5FWf47KH-9cRKlM3Z34cwAC0GQAAuQLkEtwjT8YaEy30jYE"
```
</TabItem>
</Tabs>
```json title="Result"
NOT JSON: 49 44 33 03 00 00 00 05 1F 76 54 49 54 32 00 00 00 0B 00 00 01 FF FE 44 00 6F 00 67 00 73 00 54 50 45 31 00 00 00 15 00 00 01 FF FE 4D 00 6F 00 74 00 6F 00 72 00 68 00 65 00 61 00 64 00 54 59…
```