#' create secret
#'
#' Create a secret API key
#'
#' @return a character string with 24 random numbers and letters
#'
#' @export
#'
#' @importFrom stringi stri_rand_strings
#'
#' @examples
#'
#' create_secret()
#'
create_secret <- function() {
stringi::stri_rand_strings(1, 34, pattern = "[A-Za-z0-9]")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.