Nothing
#' Build a DATSU web service url
#'
#' utility to build a url with optional query arguments
#'
#' @param service the name of the service
#' @param ... name arguments will be added as queries
#'
#' @return a complete url as a character string
#'
#' @examples
#'
#' datsu_api("hi", bye = 21)
#' datsu_api("getDataverIDs")
#'
#' @export
#' @importFrom httr parse_url build_url GET
datsu_api <- function(service, ...) {
url <- paste0(api_url(), "/", service)
url <- parse_url(url)
url$query <- list(...)
url <- build_url(url)
url
}
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.