1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-18 05:18:06 +02:00
OpenIntegrations/docs/en/md/Yandex_Disk/File-and-folder-management/Upload-file-by-url.md

49 lines
1.2 KiB
Markdown
Raw Normal View History

---
sidebar_position: 11
---
# Upload file by URL
Downloads a file to disk from the specified URL
2024-07-10 12:58:29 +02:00
`Function UploadFileByURL(Val Token, Val Path, Val Address) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Token |
| Path | --path | String | Path to place the downloaded file |
| Address | --url | String | File URL |
Returns: Map Of KeyAndValue - serialized JSON response from Yandex
2024-07-10 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
Token = "y0_AgAAAABdylaOAAs0QgAAAAD5i-a...";
Address = "https://openintegrations.dev/test_data/picture.jpg";
Path = "/" + String(New UUID) + ".png";
Result = OPI_YandexDisk.UploadFileByURL(Token, Path, Address);
```
```sh title="CLI command example"
oint yadisk UploadFileByURL --token "y0_AgAAAABdylaOAA..." --path "/Alpaca.png" --url "https://raw.githubusercontent.com/Bayselonarrend/OpenIntegrations/main/Media/logo.png"
```
```json title="Result"
2024-08-14 08:06:31 +02:00
{
"templated": false,
"method": "GET",
"href": "https://cloud-api.yandex.net/v1/disk/operations/b78a7ef2dd49971aa22e5e72f2e615db885da9947d7c61b2822de23a99e855a1"
}
```