Save R Shiny bookmarks into a table and retrieve it

I am trying save the bookmark URL from the shiny app into a table so if the user clicks on a saved URL to retrieve the bookmarked state of the app. When you click on the bookmark button you get a URL how can that be inserted into a table. When saved in a table a view button with each saved bookmark will allow the user to view the saved bookmark state.

 ui <- function(request) {
  fluidPage(
    plotOutput("plot"),
    sliderInput("n", "Number of observations", 1, nrow(faithful), 100),
    bookmarkButton()
  )
}

server <- function(input, output, session) {
  output$plot <- renderPlot({
    hist(faithful$eruptions[seq_len(input$n)], breaks = 40)
  })
}

enableBookmarking(store = "url")
shinyApp(ui, server)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.