View source: R/revenera_auth.R
revenera_auth | R Documentation |
An authorizaton cookie must first be established before querying for data. This is done using your Revenera username and password. If there is an active cookie this function will fail. You must 'logout()' first then
revenera_auth(rev_username, rev_password)
rev_username |
Revenera username. |
rev_password |
Revenera password. |
It is not recommended that these values be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
Cookie authorization (which you won't see), or an error message.
## Not run:
rev_user <- "my_username"
rev_pwd <- "super_secret"
logout(rev_user, rev_pwd)
Sys.sleep(30)
revenera_auth(rev_user, rev_pwd)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.