jaod_article: Get an article by ID

Description Usage Arguments Value Examples

View source: R/jaod_article.R

Description

Get an article by ID

Usage

1

Arguments

id

(character) a DOAJ article ID, a UUID. Note, this is not a DOI, but you can use jaod_article_search() to search by ISSN to get DOAJ article ids

...

curl options passed on to verb-GET, see ?curl::curl_options for help on curl options

Value

a named list, with slots admin, last_updated, id, created_date, and bibjson

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
out <- jaod_article(id = "0005e11ec616453f854070069385e057")
out$admin
out$last_updated
out$id
out$created_date
out$bibjson

ids <- c("73f781ad57094b98a0b46d8903fdc2c2",
  "0005e11ec616453f854070069385e057")
out <- lapply(ids, jaod_article)
out[[1]]

## End(Not run)

jaod documentation built on Dec. 3, 2020, 1:07 a.m.