Nothing
context("Callback")
test_that("request callback", {
f <- function(req) req$url
old <- set_callback("request", f)
on.exit(set_callback("request", old))
expect_identical(GET("foo.bar"), "foo.bar")
expect_identical(f, get_callback("request"))
expect_identical(f, set_callback("request", old))
expect_identical(old, get_callback("request"))
})
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.