Skip to contents

Retrieve a person's information from OpenAlex

Usage

retrieve_and_construct_personRecord(x)

Arguments

x

The person's identifier.

Value

The object with author information.

Examples

if (FALSE) { # \dontrun{
### Retrieve a person's record (requires an internet connection!)
personRecord1 <-
  zirconia::retrieve_and_construct_personRecord(
    "a5051775589"
  );

personRecord2 <-
  zirconia::retrieve_and_construct_personRecord(
    "0000-0003-1613-5981"
  );

### Show the name and identifiers
personRecord1;
personRecord2;
} # }