Nothing
library("vcr")
vcr_setup <- function() {
invisible(vcr::vcr_configure(
dir = vcr::vcr_test_path("fixtures"),
filter_sensitive_data = list(
"<<aws_region>>" = Sys.getenv("AWS_REGION")
),
filter_request_headers = list(
Authorization = "redacted",
"X-Amz-Content-Sha256" = "redacted"
),
filter_response_headers = list(
"x-amz-id-2" = "redacted",
"x-amz-request-id" = "redacted"
)
))
vcr::check_cassette_names()
}
vcr_setup()
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.