Description Usage Arguments Details Value Author(s) References Examples
Returns a data.frame with publicly available information on members of a VK group by group id.
1 2  | getGroupMembers(group_id, access_token, 
    num_users = 'all', verbose = FALSE)
 | 
group_id | 
 A numeric id for the VK group. Available from the group's page (see Details).  | 
access_token | 
 Your access token (see ?makeAccessToken).  | 
num_users | 
 The number of group members to be returned. Either 'all' (default) or a positive integer.  | 
verbose | 
 Boolean (default: FALSE), whether information about scraping iterations should be printed.  | 
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.
A data.frame with columns:
id | 
 group member's user ID  | 
first_name | 
 group member's first name  | 
last_name | 
 group member's last name  | 
... | 
 additional fields depend on publicly available information  | 
Denis Stukal denis.stukal@nyu.edu
VK API Methods: Group Members (https://vk.com/dev/groups.getMembers)
1 2 3 4 5 6 7  | ## Not run: 
mytoken = 'XXXXXXXXXXXXXX'
groupid = AAAAAAAA
dat <- getGroupMembers(group_id = groupid, 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.