Nothing
generateMgrastWebsession <- function(cookie) {
cookie <- as.matrix(read.delim(cookie, header = F, stringsAsFactors = F))
key.index <- match("WebSession", cookie)
if (key.index) {
key <- cookie[key.index + nrow(cookie)]
} else {
stop("cookie may incorrect")
}
return(key)
}
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.