R/ices_get_jwt.R

Defines functions ices_get_jwt

Documented in ices_get_jwt

#' @rdname ices_request_jwt
#' @export
ices_get_jwt <- function(url,
                         username = NULL,
                         retry = TRUE, quiet = FALSE,
                         verbose = FALSE,
                         jwt = NULL) {
  out <-
    ices_request_jwt(
      "GET", url,
      body = NULL, encode = "json", username = username,
      retry = retry, quiet = quiet, verbose = verbose,
      jwt = jwt
    )

  return(out)
}

Try the icesConnect package in your browser

Any scripts or data that you put into this service are public.

icesConnect documentation built on June 8, 2025, 10:53 a.m.