Skip to main content

Like

Likes a post

Function LikePost(Val PostID, Val WallID = "", Val Parameters = "") Export

ParameterCLI optionTypeDescription
PostID--postString, NumberPost ID
WallID--wallString, NumberID of the wall where the post is located
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();
PostID = "3754";

Result = OPI_VK.LikePost(PostID, , Parameters);
CLI command example
    
oint vk LikePost --post "3356" --wall %wall% --auth "GetVKParameters()"

Result
{
"response": {
"likes": 1
}
}