2024-10-15 10:50:56 +03:00
|
|
|
---
|
2024-10-15 10:16:04 +03:00
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
2024-10-15 10:50:56 +03:00
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
2024-10-15 10:16:04 +03:00
|
|
|
# Create post
|
|
|
|
Creates a post with images
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function CreatePost(Val Text, Val ImageArray, Val Advertisement = False, Val LinkUnderPost = "", Val Parameters = "") Export`
|
|
|
|
|
2024-10-15 15:15:47 +03:00
|
|
|
| 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 |
|
2024-10-15 10:16:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from VK
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
2024-10-15 13:51:58 +03:00
|
|
|
:::tip
|
|
|
|
Parameters with Binary data type can also accept file paths on disk and URLs
|
|
|
|
:::
|
|
|
|
<br/>
|
2024-10-15 10:16:04 +03:00
|
|
|
|
|
|
|
|
2024-12-16 19:38:57 +03:00
|
|
|
|
2024-10-15 21:15:56 +03:00
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
2024-10-15 10:16:04 +03:00
|
|
|
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);
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2024-10-20 22:36:03 +03:00
|
|
|
<Tabs>
|
|
|
|
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
|
|
```bash
|
2024-10-22 08:59:24 +03:00
|
|
|
# JSON data can also be passed as a path to a .json file
|
|
|
|
|
2024-10-20 22:36:03 +03:00
|
|
|
oint vk CreatePost \
|
2024-10-22 08:59:24 +03:00
|
|
|
--text "Post from autotest" \
|
2024-12-25 11:43:34 +03:00
|
|
|
--pictures "C:\Users\Administrator\AppData\Local\Temp\ra1gsfhvht1.png" \
|
2024-10-22 08:59:24 +03:00
|
|
|
--ad true \
|
|
|
|
--url "https://github.com/Bayselonarrend/OpenIntegrations" \
|
|
|
|
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
|
2024-10-20 22:36:03 +03:00
|
|
|
```
|
|
|
|
</TabItem>
|
|
|
|
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
|
|
```batch
|
2024-10-22 08:59:24 +03:00
|
|
|
:: JSON data can also be passed as a path to a .json file
|
|
|
|
|
2024-10-20 22:36:03 +03:00
|
|
|
oint vk CreatePost ^
|
2024-10-22 08:59:24 +03:00
|
|
|
--text "Post from autotest" ^
|
2024-12-25 11:43:34 +03:00
|
|
|
--pictures "C:\Users\Administrator\AppData\Local\Temp\ra1gsfhvht1.png" ^
|
2024-10-22 08:59:24 +03:00
|
|
|
--ad true ^
|
|
|
|
--url "https://github.com/Bayselonarrend/OpenIntegrations" ^
|
|
|
|
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
|
2024-10-20 22:36:03 +03:00
|
|
|
```
|
|
|
|
</TabItem>
|
|
|
|
</Tabs>
|
2024-10-15 10:16:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
{
|
|
|
|
"response": {
|
|
|
|
"post_id": 4552
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|