fs_download: Get details for an article

View source: R/fs_download.R

fs_downloadR Documentation

Get details for an article

Description

Get details for an article

Usage

fs_download(
  article_id,
  urls_only = TRUE,
  mine = is_mine(article_id),
  session = fs_get_auth(),
  show_versions = FALSE,
  version = NULL,
  ...
)

Arguments

article_id

number

urls_only

logical (default TRUE) to only return the URLs to the downloadable objects but do not call download.file. If FALSE, will download files

mine

logical (default FALSE). Set to true to see article details for your own non-public articles

session

the authentication credentials from fs_auth

show_versions

logical, show what versions are available

version

show a given version number

...

additional arguments to download.file

Author(s)

Carl Boettiger cboettig@gmail.com

References

http://api.figshare.com https://github.com/ropensci/rfigshare

See Also

fs_auth download.file

Examples

## Not run: 
url <- fs_download(90818)
data <- read.csv(url)
articles <- fs_search("SciFund")
ids <- fs_ids(articles)
fs_download(ids, urls_only=FALSE)

## End(Not run)

ropensci/rfigshare documentation built on May 18, 2022, 6:34 p.m.