Nothing
#* This is an example of an safe endpoint which
#* checks user input to avoid a DOS attack
#* @get /
#* @query pts:integer(10)
#* @serializer png
function(query) {
if (query$pts > 1000 & query$pts < 1){
abort_bad_request("pts must be between 1 and 1,000")
}
plot(1:pts)
}
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.