inst/simple/app.R

library(shiny)
library(auth0)

ui <- bootstrapPage(
  fluidRow(plotOutput("plot"))
)

server <- function(input, output, session) {
  output$plot <- renderPlot({
    plot(1:10)
  })
}

shinyAppAuth0(ui, 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.