Title: | Provides User Tokens for Access to ICES Web Services |
---|---|
Description: | Provides user tokens for ICES web services that require authentication and authorization. Web services covered by this package are ICES VMS database, the ICES DATSU web services, and the ICES SharePoint site <https://www.ices.dk/data/tools/Pages/WebServices.aspx>. |
Authors: | Colin Millar [aut, cre] |
Maintainer: | Colin Millar <[email protected]> |
License: | GPL-3 |
Version: | 1.1.3 |
Built: | 2025-04-03 14:16:59 UTC |
Source: | https://github.com/ices-tools-prod/icesConnect |
Deletes the token from the key ring.
clear_token(username = get_username())
clear_token(username = get_username())
username |
the ices username that you require a token for, Default: getOption("ices.username") |
no return value
## Not run: clear_token() ## End(Not run)
## Not run: clear_token() ## End(Not run)
Get your ICES username from the options.
Set the ICES user or logon name that will be used for requests
clear_username() get_username() set_username(username)
clear_username() get_username() set_username(username)
username |
the ices username you use to login to SharePoint for example. |
character scalar, the username
invisible value: the previous username that was set
## Not run: get_username() ## End(Not run) ## Not run: set_username("myusername") ## End(Not run)
## Not run: get_username() ## End(Not run) ## Not run: set_username("myusername") ## End(Not run)
Decodes the token to allow inspection of claims
Return the expiration date of the token
What user is this token for
decode_token(jwt = ices_token(), formatted = TRUE) token_expiration(jwt = ices_token()) token_user(jwt = ices_token())
decode_token(jwt = ices_token(), formatted = TRUE) token_expiration(jwt = ices_token()) token_user(jwt = ices_token())
jwt |
a javascript web token got by running |
formatted |
should formatted output be returned |
list of claims
POSIXct date time
string, user name
## Not run: decode_token() ## End(Not run) ## Not run: token_expiration() ## End(Not run) ## Not run: token_user() ## End(Not run)
## Not run: decode_token() ## End(Not run) ## Not run: token_expiration() ## End(Not run) ## Not run: token_user() ## End(Not run)
Perform a get request to a url using a javascript web token for authentication
ices_get( url, retry = TRUE, quiet = FALSE, verbose = FALSE, content = TRUE, use_token = FALSE ) ices_get_jwt( url, username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL ) ices_patch_jwt( url, body = list(), encode = "json", username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL ) ices_post( url, body = list(), retry = TRUE, verbose = FALSE, content = TRUE, use_token = TRUE ) ices_post_jwt( url, body = list(), encode = "json", username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL ) ices_request_jwt( type = c("GET", "POST", "PATCH"), url, body = NULL, encode = c("multipart", "form", "json", "raw"), username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL )
ices_get( url, retry = TRUE, quiet = FALSE, verbose = FALSE, content = TRUE, use_token = FALSE ) ices_get_jwt( url, username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL ) ices_patch_jwt( url, body = list(), encode = "json", username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL ) ices_post( url, body = list(), retry = TRUE, verbose = FALSE, content = TRUE, use_token = TRUE ) ices_post_jwt( url, body = list(), encode = "json", username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL ) ices_request_jwt( type = c("GET", "POST", "PATCH"), url, body = NULL, encode = c("multipart", "form", "json", "raw"), username = NULL, retry = TRUE, quiet = FALSE, verbose = FALSE, jwt = NULL )
url |
the url to make the request to |
retry |
if initial request fails, should a retry be made, Default: TRUE |
quiet |
suppress informative messages to the console |
verbose |
should the http request return verbose output |
content |
logical, if TRUE the content of the response is returned, if FALSE the httr response object is returned |
use_token |
logical, if TRUE the token is used, if FALSE the token is not used |
username |
the ices username to perform the request as, Default: getOption("ices.username") |
jwt |
option to supply a token bypassing the ices_token() route, if "" no token is used |
body |
optional body of request |
encode |
If the body is a named list, how should it be encoded? |
type |
the type of request to make, GET, POST or PATCH |
httr response object
ices_token
GET
,add_headers
,stop_for_status
,status_code
## Not run: # this function is interactive and asks the user for a password ices_request_jwt("GET", "https://taf.ices.dk/vms/api/gearwidths") ices_get_jwt("https://taf.ices.dk/vms/api/gearwidths") the top level function ices_get("https://taf.ices.dk/vms/api/gearwidths", content = FALSE, use_token = TRUE) ices_get("https://taf.ices.dk/vms/api/gearwidths", content = TRUE) ## End(Not run)
## Not run: # this function is interactive and asks the user for a password ices_request_jwt("GET", "https://taf.ices.dk/vms/api/gearwidths") ices_get_jwt("https://taf.ices.dk/vms/api/gearwidths") the top level function ices_get("https://taf.ices.dk/vms/api/gearwidths", content = FALSE, use_token = TRUE) ices_get("https://taf.ices.dk/vms/api/gearwidths", content = TRUE) ## End(Not run)
Stores a user token in the system keyring
ices_token(username = NULL, password = NULL, refresh = FALSE, ...)
ices_token(username = NULL, password = NULL, refresh = FALSE, ...)
username |
the ices username that you require a token for, Default: NULL, which results in getOption("ices.username") |
password |
the ices username that you require a token for, Default: NULL, which results in a dialogue box request for the password |
refresh |
should the token be refreshed to update new claims for example |
... |
not yet used |
character scalar, the token
## Not run: ices_token() ## End(Not run)
## Not run: ices_token() ## End(Not run)