I am using this code in the server part of my shiny app to fetch user information:
...
output$welcome <- renderText({
paste("Hello", session$userData$user()[3])
})
....
and in the ui part:
...
verbatimTextOutput("welcome"),
...
And I get this:

I am thinking of fetching the name or username to welcome the user not the email?!