Nothing
#' @keywords internal
#'
handle_download_error <- function(download_function, ..., fallback = NULL) {
tryCatch(
{
download_function(...)
},
error = function(e) {
cli::cli_inform(paste0(
"Failed to download or process the resource. ",
"The resource may not be available, or the URL may have changed. ",
"Error message: {.message {e$message}}"
))
fallback
}
)
}
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.