getGroups {Rlinkedin} | R Documentation |
Retrieve LinkedIn Group Information
Description
getGroups
retrieves information and settings about the LinkedIn groups you belong to.
Usage
getGroups(token, details = FALSE, partner = 0)
Arguments
token |
Authorization token. |
details |
TRUE or FALSE. If TRUE, it will return group details. FALSE is default. |
partner |
Indicate whether you belong to the Partnership Program. Values: 0 or 1 |
Details
This function returns information about what groups you belong to, either with or without group details. Group details can be called by setting the option details
= TRUE.
Value
Returns a dataframe including group profile information.
When details
= FALSE (default), the function will return information about each group's settings such as whether it allows messages from members, email frequency, and manager announcements.
When details
= TRUE, the function will return both a short and long
description of the group.
Author(s)
Michael Piccirilli michael.r.piccirilli@gmail.com
See Also
Examples
## Not run:
my.groups <- getGroups(token = in.auth, details=TRUE)
## End(Not run)