RMendeley (version 1.2)

public_groups_documents: public_groups_documents.R Public Group Methods (Public Methods)

Description

Returns list of documents ids within a public group. It is possible

Usage

public_groups_documents(query, details = FALSE, page = NA, numItems = 1000L, key = getOption("MendeleyKey", stop("need an API key for Mendeley")), url = sprintf("%s/%s/%s", "http://api.mendeley.com/oapi/documents/groups", query, "docs/?details=true"), curl = getCurlHandle(), ...)

Arguments

query
a public group ID number
details
if detailed information (public_group_details) should be returned; logical, default is FALSE
page
number pages to return (optional)
numItems
number of hits to return (optional)
key
Mendeley API key (otherwise will try and load from package)
url
the Mendeley API url for the function (should be left to default)
...
optional additional curl options (debugging tools mostly)
curl
If using in a loop, call getCurlHandle() first and pass the returned value in here (avoids unnecessary footprint)

Value

detailed metadata for all articles in the public group

Details

to retrieve documents details in the same request setting the optional parameter details to true.

Examples

Run this code
## Not run: 
# public_groups_details(492511)
# ## End(Not run)

Run the code above in your browser using DataCamp Workspace