Nothing
#' Retrieve BWS Access Token from Environment
#'
#' Retrieves the `BWS_ACCESS_TOKEN` from environment variables. This token is
#' used to authenticate with the Bitwarden Secrets Manager API.
#'
#' @return A character string containing the BWS access token.
get_bws_access_token <- function() {
bws_access_token <- Sys.getenv("BWS_ACCESS_TOKEN")
if (bws_access_token == "") {
stop("No BWS_ACCESS_TOKEN provided or set as environment variable.")
}
return(bws_access_token)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.