mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
1.2 KiB
1.2 KiB
sidebar_position |
---|
11 |
Upload file by URL
Downloads a file to disk from the specified URL
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
Token = "y0_AgAAAABdylaOAAs0QgAAAAD5i-a...";
Address = "https://openintegrations.dev/test_data/picture.jpg";
Path = "/" + String(New UUID) + ".png";
Result = OPI_YandexDisk.UploadFileByURL(Token, Path, Address);
oint yadisk UploadFileByURL --token "y0_AgAAAABdylaOAA..." --path "/Alpaca.png" --url "https://raw.githubusercontent.com/Bayselonarrend/OpenIntegrations/main/Media/logo.png"
{
"templated": false,
"method": "GET",
"href": "https://cloud-api.yandex.net/v1/disk/operations/b78a7ef2dd49971aa22e5e72f2e615db885da9947d7c61b2822de23a99e855a1"
}