Last data update: 2014.03.03

R: Bookmarked and Recommended Jobs on LinkedIn
getJobsR 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)

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.

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

searchJobs

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)

Results