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 )
group | The group ID |
---|---|
sort | On which field to sort |
direction | The direction to sort in |
format | The format to export |
start | The index of the first record to return |
limit | 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"