Learn R Programming

rorcid (version 0.4.0)

orcid_bio: Get biography data for a person

Description

Get biography data for a person

Usage

orcid_bio(orcid, format = "application/json", ...)

Arguments

orcid

(character) Orcid identifier(s), of the form XXXX-XXXX-XXXX-XXXX. required.

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()

Value

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

Run this code
# NOT RUN {
res <- orcid_bio(orcid = "0000-0002-9341-7985")
res$`0000-0002-9341-7985`
res$`0000-0002-9341-7985`$`created-date`
res$`0000-0002-9341-7985`$`last-modified-date`
res$`0000-0002-9341-7985`$`content`
res$`0000-0002-9341-7985`$`visibility`
res$`0000-0002-9341-7985`$path

orcid_bio(orcid = "0000-0003-1620-1408")
# }

Run the code above in your browser using DataLab