Nothing
check_active_session <- function(session = shiny::getDefaultReactiveDomain()) {
if (is.null(session)) {
rlang::abort(
"An active Shiny session is required.",
call = rlang::caller_env()
)
}
}
resolve_id <- function(id, session = shiny::getDefaultReactiveDomain()) {
if (is.null(session)) return(id)
session$ns(id)
}
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.