getStatus {vkR} | R Documentation |
Returns data required to show the status of a users and/or communities
Description
Returns data required to show the status of a users and/or communities
Usage
getStatus(
users_ids = c(),
groups_ids = c(),
progress_bar = FALSE,
v = getAPIVersion()
)
Arguments
users_ids |
User IDs |
groups_ids |
Community IDs |
progress_bar |
Display progress bar |
v |
Version of API |
Examples
## Not run:
status.me <- getStatus()
status.friends <- getStatus(users_ids = getFriends()$items)
status.groups <- getStatus(groups_ids = getGroups()$items)
status.friends_and_groups <- getStatus(users_ids = getFriends()$items,
groups_ids = getGroups()$items, progress_bar = T)
## End(Not run)
[Package vkR version 0.2 Index]