Make repost
Reposts the record
Function MakeRepost(Val PostID, Val WallID = "", Val TargetWall = "", Val Advertising = False, Val Parameters = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
PostID | --post | String, Number | ✔ | Post ID |
WallID | --from | String, Number | ✖ | ID of the wall where the post is located |
TargetWall | --to | String, Number | ✖ | ID of the target wall or group |
Advertising | --ad | Boolean | ✖ | Sign of an advertising post |
Parameters | --auth | Structure Of String | ✖ | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - serialized JSON response from VK
1C:Enterprise/OneScript code example
Parameters = GetVKParameters();
PostID = 2571;
WallID = -218704372;
Result = OPI_VK.MakeRepost(PostID, WallID, , , Parameters);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint vk MakeRepost \
--post 2571 \
--from -218704372 \
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
:: JSON data can also be passed as a path to a .json file
oint vk MakeRepost ^
--post 2571 ^
--from -218704372 ^
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
Result
{
"response": {
"success": 1,
"post_id": 4558,
"reposts_count": 3,
"likes_count": 10,
"wall_repost_count": 1,
"mail_repost_count": 2,
"badges": {
"type": 11,
"id": 2571,
"owner_id": -218704372
}
}
}