Nothing
#' EUBON capabilities
#'
#' @export
#' @param ... Curl options passed on to [crul::verb-GET]
#' @references https://cybertaxonomy.eu/eu-bon/utis/1.3/doc.html
#' @family eubon-methods
#' @examples \dontrun{
#' eubon_capabilities()
#' }
eubon_capabilities <- function(...) {
res <- crul::HttpClient$new(file.path(eubon_base(), "capabilities"),
headers = tx_ual, opts = list(...))$get()
res$raise_for_status()
tibble::as_tibble(
jsonlite::fromJSON(res$parse("UTF-8"), TRUE, flatten = TRUE)
)
}
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.