inst/ui-server-bookmark/server.R

library(shiny)
library(auth0)

# # run this before running the app:
# options(shiny.port = 8080)
# shiny::enableBookmarking(store = "server")

server <- function(input, output, session) {
  output$out <- renderText({
    if (input$caps)
      toupper(input$txt)
    else
      input$txt
  })
}

auth0_server(server)

Try the auth0 package in your browser

Any scripts or data that you put into this service are public.

auth0 documentation built on March 31, 2023, 9:47 p.m.