orcid_researcher_urls function

Get researcher urls for a person

Get researcher urls for a person

orcid_researcher_urls(orcid, put_code = NULL, format = "application/json", ...)

Arguments

  • orcid: (character) Orcid identifier(s), of the form XXXX-XXXX-XXXX-XXXX. required.
  • put_code: (character/integer) one or more put codes. up to 50. optional
  • format: (character) Name of the content-type format. One of "application/vnd.orcid+xml; qs=5", "application/orcid+xml; qs=3", "application/xml", "application/vnd.orcid+json; qs=4", "application/orcid+json; qs=2", "application/json" "application/vnd.citationstyles.csl+json". optional
  • ...: Curl options passed on to crul::HttpClient()

Returns

A list of results for each Orcid ID passed in, with each element named by the Orcid ID

Details

This function is vectorized, so you can pass in many ORCID's, and there's an element returned for each ORCID you put in.

Examples

## Not run: # all data res <- orcid_researcher_urls(orcid = "0000-0003-1444-9135") res$`0000-0003-1444-9135` names(res$`0000-0003-1444-9135`) res$`0000-0003-1444-9135`$`researcher-url` # individual ones orcid_researcher_urls("0000-0003-1444-9135", 304093) orcid_researcher_urls("0000-0003-1444-9135", c(332241, 304093)) # formats orcid_researcher_urls("0000-0003-1444-9135", 304093, format = "application/xml") ## End(Not run)
  • Maintainer: Scott Chamberlain
  • License: MIT + file LICENSE
  • Last published: 2021-01-20