R/zotero_construct_export_call.R
zotero_construct_export_call.Rd
This function is just a convenience function to create a simple URL to download references from a public Zotero group. See https://www.zotero.org/support/dev/web_api/v3/start for details.
zotero_construct_export_call(
group,
sort = "dateAdded",
direction = "asc",
format = "bibtex",
start = 0,
limit = 100
)
The group ID
On which field to sort
The direction to sort in
The format to export
The index of the first record to return
The number of records to return
The URL in a character vector.
zotero_construct_export_call(2425237);
#> [1] "https://api.zotero.org/groups/2425237/items?sort=dateAdded&direction=asc&format=bibtex&start=0&limit=100"