Nothing
# Read URL into a JSON format
url_to_json <- function(url) url |>
throttle() |>
utils::URLencode() |>
readLines(warn = FALSE) |>
RJSONIO::fromJSON() |>
tryCatch(error = function(e) {
warning(e)
return(list())
})
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.