--- sidebar_position: 1 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Create post Creates a post with images `Function CreatePost(Val Text, Val ImageArray, Val Advertisement = False, Val LinkUnderPost = "", Val Parameters = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Text | --text | String | ✔ | Post text | | ImageArray | --pictures | Array of String, BinaryData | ✔ | Array of images | | Advertisement | --ad | Boolean | ✖ | Sign ""This is an ad"" | | LinkUnderPost | --url | String | ✖ | Link (URL) under the post | | Parameters | --auth | Structure Of String | ✖ | Authorization JSON or path to .json | Returns: Map Of KeyAndValue - serialized JSON response from VK
:::tip Parameters with Binary data type can also accept file paths on disk and URLs :::
```bsl title="1C:Enterprise/OneScript code example" Parameters = GetVKParameters(); Text = "Post from autotest"; URL = "https://github.com/Bayselonarrend/OpenIntegrations"; Image = "https://api.athenaeum.digital/test_data/picture.jpg"; // URL, Path or Binary Data Image2 = "https://api.athenaeum.digital/test_data/picture2.jpg"; // URL, Path or Binary Data TFN = GetTempFileName("png"); CopyFile(Image2, TFN); ImageArray = New Array; ImageArray.Add(Image); ImageArray.Add(TFN); Result = OPI_VK.CreatePost(Text, ImageArray, True, URL, Parameters); Result = OPI_VK.CreatePost(Text, Image, False , , Parameters); ``` ```bash # JSON data can also be passed as a path to a .json file oint vk CreatePost \ --text "Post from autotest" \ --pictures "C:\Users\Administrator\AppData\Local\Temp\l00xbkaga3g.png" \ --ad true \ --url "https://github.com/Bayselonarrend/OpenIntegrations" \ --auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}" ``` ```batch :: JSON data can also be passed as a path to a .json file oint vk CreatePost ^ --text "Post from autotest" ^ --pictures "C:\Users\Administrator\AppData\Local\Temp\l00xbkaga3g.png" ^ --ad true ^ --url "https://github.com/Bayselonarrend/OpenIntegrations" ^ --auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}" ``` ```json title="Result" { "response": { "post_id": 4552 } } ```