Skip to main content

Create composite post

Creates a post based on an array of object identifiers (images, videos, etc..)

Function CreateCompositePost(Val Text, Val Objects, Val Advertisement = False, Val LinkUnderPost = "", Val Parameters = "") Export

ParameterCLI optionTypeRequiredDescription
Text--textStringPost text
Objects--objectsArray of StringArray of identifiers like photo123_123
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


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
Video = "https://api.athenaeum.digital/test_data/video.mp4"; // URL, Path or Binary Data

TFN = GetTempFileName("png");
CopyFile(Image, TFN);

ImageUpload = OPI_VK.UploadPhotoToServer(TFN, Parameters)["response"][0];
VideoUpload = OPI_VK.UploadVideoToServer(Video, "NewVideo", , , Parameters);

ImageOwner = OPI_Tools.NumberToString(ImageUpload["owner_id"]);
VideoOwner = OPI_Tools.NumberToString(VideoUpload["owner_id"]);

ImageID = OPI_Tools.NumberToString(ImageUpload["id"]);
VideoID = OPI_Tools.NumberToString(VideoUpload["video_id"]);

AttachmentsArray = New Array;
AttachmentsArray.Add("photo" + ImageOwner + "_" + ImageID);
AttachmentsArray.Add("video" + VideoOwner + "_" + VideoID);

Result = OPI_VK.CreateCompositePost(Text, AttachmentsArray, False, URL, Parameters);
    # JSON data can also be passed as a path to a .json file

oint vk CreateCompositePost \
--text "Post from autotest" \
--objects "['photo657846756_457244946','video-218861756_456239741']" \
--ad false \
--url "https://github.com/Bayselonarrend/OpenIntegrations" \
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
Result
{
"response": {
"post_id": 4555
}
}