Nothing
library(httptest)
set_requester(
function(r) {
gsub_request(
gsub_request(
r,
# Prune the domain
"^https?://[^/]+/",
""
),
# Truncate GUIDs to 8 characters
"([0-9a-f]{8})\\-[0-9a-f\\-]{27}",
"\\1"
)
}
)
set_redactor(
function(r) {
gsub_response(
gsub_response(
r,
# Prune the domain
"^https?://[^/]+/",
""
),
# Truncate GUIDs to 8 characters
"([0-9a-f]{8})\\-[0-9a-f\\-]{27}",
"\\1"
)
}
)
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.