Nothing
create_header_router <- function(max_size, shared_secret) {
stack <- routr::RouteStack$new()
stack$attach_to <- "header"
if (!is.null(max_size)) {
stack$add_route(routr::sizelimit_route(max_size), "max_size")
}
if (!is.null(shared_secret) && shared_secret != "") {
stack$add_route(routr::shared_secret_route(
shared_secret,
"Plumber-Shared-Secret"
), "shared_secret")
}
stack
}
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.