#' @author Gregoire Versmee, Laura Versmee
#' @import httr
content.get <- function(url, token, verbose = FALSE) {
if (is.null(token)) return(httr::content(httr::GET(URLencode(url))))
else return(httr::content(httr::GET(URLencode(url), httr::add_headers(Authorization=paste("bearer", token)))))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.