Skip to main content

Get post statistics

Gets statistics in terms of posts

Function GetPostStatistics(Val PostIDsArray, Val Parameters = "") Export

ParameterCLI optionTypeRequiredDescription
PostIDsArray--postsArray of String,NumberArray of post IDs
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Array of Arbitrary - Array of post statistics data


1C:Enterprise/OneScript code example
    Parameters = GetVKParameters();

ArrayOfPosts = New Array;
ArrayOfPosts.Add(214);
ArrayOfPosts.Add(215);

Result = OPI_VK.GetPostStatistics(ArrayOfPosts, Parameters);
    oint vk GetPostStatistics \
--posts ""[214,215]"" \
--auth ""/tmp/ibhhbfm1.mcf.json""
Result
[
{
"post_id": 214,
"hide": 0,
"join_group": 0,
"links": 0,
"reach_subscribers": 1,
"reach_total": 1,
"reach_viral": 0,
"reach_ads": 0,
"report": 0,
"to_group": 1,
"unsubscribe": 0,
"ad_views": 0,
"ad_subscribers": 0,
"ad_hide": 0,
"ad_unsubscribe": 0,
"ad_links": 0,
"ad_to_group": 0,
"ad_join_group": 0,
"ad_coverage": 0,
"ad_report": 0
},
{
"post_id": 215,
"hide": 0,
"join_group": 0,
"links": 0,
"reach_subscribers": 1,
"reach_total": 1,
"reach_viral": 0,
"reach_ads": 0,
"report": 0,
"to_group": 0,
"unsubscribe": 0,
"ad_views": 0,
"ad_subscribers": 0,
"ad_hide": 0,
"ad_unsubscribe": 0,
"ad_links": 0,
"ad_to_group": 0,
"ad_join_group": 0,
"ad_coverage": 0,
"ad_report": 0
}
]