Nothing
#' Gets the value of the WTW_API_KEY environment variable
#'
#' @return The value of the `WTW_API_KEY` environment variable.
#' @export
#'
#' @examples
#' \dontrun{get_api_key()}
get_api_key <- function() {
key <- Sys.getenv("WTW_API_KEY")
if (identical(key, "")) {
stop("No API key found, please set the WTW_API_KEY environment variable.")
}
key
}
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.