Get activities for a person
orcid_activities(orcid, ...)
orcid
: (character) Orcid identifier(s), of the form XXXX-XXXX-XXXX-XXXX. required....
: Curl options passed on to crul::HttpClient()
A list of results for each Orcid ID passed in, with each element named by the Orcid ID
This function is vectorized, so you can pass in many ORCID's, and there's an element returned for each ORCID you put in.
## Not run: res <- orcid_activities(orcid = "0000-0002-9341-7985") res$`0000-0002-9341-7985` names(res$`0000-0002-9341-7985`) res$`0000-0002-9341-7985`$`last-modified` res$`0000-0002-9341-7985`$`educations` res$`0000-0002-9341-7985`$`fundings` res$`0000-0002-9341-7985`$`peer-reviews` res$`0000-0002-9341-7985`$`works` ## End(Not run)
Useful links