Nothing
#' Get the QCRI API key from the environment variable
#'
#' @return The QCRI API key stored in the QCRI_API_KEY environment variable.
qcri_api_key <- function() {
api_key <- Sys.getenv("QCRI_API_KEY")
if (api_key == "") {
stop("QCRI_API_KEY environment variable is not set.")
}
return(api_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.