Logout not working for google-auth
Closed this issue · 1 comments
brucefeiwang commented
Once I login through Google, and then logout, I still can login through google with out typing user info. Not sure if this is a bug. Please help.
Fei
jtrecenti commented
Using the new logoutButton()
I cannot reproduce this problem anymore. Could you test it please?
basically you need to create an app like this:
library(shiny)
library(auth0)
ui <- fluidPage(logoutButton())
server <- function(input, output, session) { }
auth0App(ui, server)