download | R Documentation |
Uses either the curl package for R versions older than 3.2.0,
otherwise a wrapper around download.file()
.
download(
path,
url,
auth_token = NULL,
basic_auth = NULL,
quiet = TRUE,
headers = NULL
)
path |
Path to download to. |
url |
URL. |
auth_token |
Token for token-based authentication or |
basic_auth |
List with |
quiet |
Passed to |
headers |
Named character vector of HTTP headers to use. |
We respect the download.file.method
setting of the user. If it is
not set, then see download_method()
for choosing a method.
Authentication can be supplied three ways:
By setting auth_token
. This will append an HTTP Authorization
header: Authorization: token {auth_token}
.
By setting basic_auth
to a list with elements user
and password
.
This will append a proper Authorization: Basic {encoded_password}
HTTP header.
By specifying the proper headers
directly.
If both auth_token
and basic_auth
are specified, that's an error.
auth_token
and basic_auth
are appended to headers
, so they
take precedence over an Authorization
header that is specified
directly in headers
.
path
, if the download was successful.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.