1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/VK/Community-managment/Upload-video-to-server.md

54 lines
1.4 KiB
Markdown
Raw Normal View History

---
sidebar_position: 10
---
# Upload video to server
Uploads video to the group for further use
<br/>
*Function UploadVideoToServer(Val Video, Val Name, Val Description = "", Val Album = "", Val Parameters = "") Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Video | --file | String, BinaryData | Video file |
| Name | --title | String | Video name |
| Description | --description | String | Video description |
| Album | --album | String | Album ID, if necessary |
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - Serialized JSON response from VK
```bsl title="Code example"
2024-06-09 00:01:18 +02:00
Parameters = GetVKParameters();
Video = "C:/nature.mp4";
Name = "NewVideo";
Description = "Video description";
Result = OPI_VK.UploadVideoToServer(Video, Name, Description,, Parameters);
```
```sh title="CLI command example"
oint vk UploadVideoToServer --file %file% --title %title% --description %description% --album %album% --auth %auth%
```
```json title="Result"
{
"video_hash": "a833866c6db82314f7",
"size": 1137878,
"direct_link": "https://vkvd124.mycdn.me/?expires=1718104740308&srcIp=20.172.5.93&pr=40&srcAg=UNKNOWN&ms=185.226.53.168&type=4&sig=bcm4dKyuOlo&ct=27&urls=45.136.20.202&clientType=14&appId=512000384397&zs=43&id=6569231256185",
"owner_id": -218861756,
"video_id": 456239138
}
```