2024-06-07 13:53:24 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Create post
|
|
|
|
Creates a post with images
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function CreatePost(Val Text, Val ImageArray, Val Advertisement = False, Val LinkUnderPost = "", Val Parameters = "") Export`
|
2024-06-07 13:53:24 +02:00
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| 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
|
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-07 13:53:24 +02:00
|
|
|
```bsl title="Code example"
|
|
|
|
Parameters = GetVKParameters();
|
|
|
|
Text = "Post from autotest";
|
|
|
|
URL = "https://github.com/Bayselonarrend/OpenIntegrations";
|
|
|
|
|
|
|
|
Image = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
|
|
|
|
Image2 = "https://openintegrations.dev/test_data/picture2.jpg"; // URL, Path or Binary Data
|
|
|
|
|
2024-06-09 01:26:57 +02:00
|
|
|
TFN = GetTempFileName("png");
|
2024-06-08 19:11:43 +02:00
|
|
|
FileCopy(Image2, TFN);
|
2024-06-07 13:53:24 +02:00
|
|
|
|
|
|
|
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);
|
|
|
|
```
|
2024-07-10 10:59:55 +02:00
|
|
|
|
|
|
|
|
2024-06-07 13:53:24 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint vk CreatePost --text %text% --pictures %pictures% --ad %ad% --url %url% --auth %auth%
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 10:59:55 +02:00
|
|
|
{
|
2024-06-07 13:53:24 +02:00
|
|
|
"response": {
|
|
|
|
"post_id": 2123
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|