Get object download link
Get presigned link for object retrieving without authorization
Function GetObjectDownloadLink(Val Name, Val Bucket, Val BasicData, Val Expire = 3600, Val Headers = Undefined, Val Directory = False) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Name | --name | String | ✔ | Name of the object in the bucket |
| Bucket | --bucket | String | ✔ | Name of the bucket to put the object |
| BasicData | --basic | Structure Of KeyAndValue | ✔ | Basic request data. See GetBasicDataStructure |
| Expire | --expires | String, Number | ✖ | Link lifetime in seconds. 604800 max. |
| Headers | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
| Directory | --dir | Boolean | ✖ | True > Path style URL, False > Virtual hosted style URL |
Returns: String - URL for object retrieving
tip
In Headers you need to add all x-amz headers that will be used when accessing the received URL
Process at AWS documentation: Download and upload objects with presigned URLs
1C:Enterprise/OneScript code example
URL = "storage-155.s3hoster.by";
AccessKey = "BRN5RKJE67...";
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
Region = "BTC";
BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);
Name = "picture.jpg";
Directory = True; // Formation URL in path-style
Bucket = "opi-dirbucket4";
Result = OPI_S3.GetObjectDownloadLink(Name, Bucket, BasicData, 7200, , Directory);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint s3 GetObjectDownloadLink \
--name "picture.jpg" \
--bucket "opi-dirbucket4" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--expires 7200 \
--dir true
:: JSON data can also be passed as a path to a .json file
oint s3 GetObjectDownloadLink ^
--name "picture.jpg" ^
--bucket "opi-dirbucket4" ^
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" ^
--expires 7200 ^
--dir true
Result
"storage-155.s3hoster.by/opi-dirbucket4/picture.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=BRN5RKJE67YCVDZRRQVI%2F20251031%2FBTC%2Fs3%2Faws4_request&X-Amz-Date=20251031T121922Z&X-Amz-Expires=7200&X-Amz-SignedHeaders=host&X-Amz-Signature=df6ff9ae03824eb5b845f48ec8e0cadbabe8f2e65d4795708ea0825e407afba6"