getJobs {Rlinkedin} | R Documentation |
Bookmarked and Recommended Jobs on LinkedIn
Description
getJobs
can be used to retrieve your bookmarked and
suggested jobs.
Usage
getJobs(token, suggestions = NULL, bookmarks = NULL, partner = 0)
Arguments
token |
Authorization token. |
suggestions |
TRUE or FALSE. If TRUE, it will return LinkedIn's job recommendations. |
bookmarks |
TRUE or FALSE. If TRUE, it will return jobs you've bookmarked on LinkedIn. |
partner |
Indicate whether you belong to the Partnership Program. Values: 0 or 1 |
Details
This function can return either jobs you've bookmarked on LinkedIn, or jobs LinkedIn is recommending for you, but not both at the same time.
Value
Returns a dataframe of recommended or bookmarked jobs.
Author(s)
Michael Piccirilli michael.r.piccirilli@gmail.com
See Also
Examples
## Not run:
job.suggestions <- getJobs(in.auth, suggestions=TRUE)
job.bookmarks <- getJobs(in.auth, bookmarks=TRUE)
## Will return NULL
job.fail <- getJobs(in.auth)
## End(Not run)
[Package Rlinkedin version 0.2 Index]