Adds shinyOAuth's client-side JavaScript dependency to your Shiny UI. This is required so the module can handle redirects and manage its browser-side session token.
Without this call in the UI, oauth_module_server() will not work.
Details
Place this near the top-level of your UI (e.g., inside fluidPage() or
tagList()), similar to how you would use shinyjs::useShinyjs().
Examples
ui <- shiny::fluidPage(
use_shinyOAuth(),
# ...
)