Skip to main content

Create post

Creates a post with images

Function CreatePost(Val Text, Val ImageArray, Val Advertisement = False, Val LinkUnderPost = "", Val Parameters = "") Export

ParameterCLI optionTypeRequiredDescription
Text--textStringPost text
ImageArray--picturesArray of String, BinaryDataArray of images
Advertisement--adBooleanSign ""This is an ad""
LinkUnderPost--urlStringLink (URL) under the post
Parameters--authStructure Of StringAuthorization 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


1C:Enterprise/OneScript code example
    Parameters = GetVKParameters();
Text = "Post from autotest";
URL = "https://github.com/Bayselonarrend/OpenIntegrations";

Image = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
Image2 = "https://hut.openintegrations.dev/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);
    oint vk CreatePost \
--text ""Post from autotest"" \
--pictures ""/tmp/csihib2z.ddt.png"" \
--ad "true" \
--url ""https://github.com/Bayselonarrend/OpenIntegrations"" \
--auth ""/tmp/o0h1bxxh.5lg.json""
Result
{
"response": {
"post_id": 9686
}
}