getGroupPostLikes: Get IDs of all Users who Liked a Post on a Group Page

Description Usage Arguments Details Value Author(s) References Examples

Description

Returns a vector of user IDs who liked a post on a group page.

Usage

1
getGroupPostLikes(group_id, post_id, access_token)

Arguments

group_id

A numeric ID for the VK group. Available from the group's page (see Details).

post_id

A numeric ID of a post on a group page.

access_token

Your access token (see ?makeAccessToken).

Details

Many VK groups and users 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.

Value

A vector of user IDs.

Author(s)

Denis Stukal denis.stukal@nyu.edu

References

VK API Methods: Likes (https://vk.com/dev/likes.getList)

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
mytoken = 'XXXXXXXXXXXXXX'
groupid = AAAAAAAA
postid = BBBBBB
dat <- getGroupPostLikes(group_id = groupid, 
    post_id = postid, access_token = mytoken)
str(dat)

## End(Not run)

denisStukal/Rvk documentation built on June 3, 2019, 5:56 p.m.