Description Usage Arguments Details Value Author(s) References Examples
Returns the number of posts/replies that mention a query string.
1 | getGroupWallSearchCount(group_id, query, access_token)
|
group_id |
A numeric ID of the VK group. Available from the group's page (see Details). |
query |
A string to search on a group page. |
access_token |
Your access token (see ?makeAccessToken). |
Many VK groups have their ID as part of their URL address (e.g. https://vk.com/publicGROUPID, where GROUPID is a sequence of numbers). In the event a group has a screen name that does not show its ID in the URL, one can access it by clicking on any group post (or photo, video, etc.): the post will open with a new URL of the form https://vk.com/SCREENNAME?w=wall-GROUPID_POSTID). Pass GROUPID (without the minus sign in front of it) to the function call.
Numeric (the number of posts/replies that mention a query string)
Denis Stukal denis.stukal@nyu.edu
VK API Methods: Wall (https://vk.com/dev/wall.search)
1 2 3 4 5 6 7 8 | ## Not run:
mytoken = 'XXXXXXXXXXXXXX'
groupid = AAAAAAAA
myquery = 'Obama'
dat <- getGroupWallSearchCount(group_id = groupid, query = myquery, access_token = mytoken)
str(dat)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.