This vignette provides a step-by-step description of what happens
during an authentication flow when using the
oauth_module_server() Shiny module. It maps protocol
concepts (OAuth 2.0 Authorization Code + PKCE, OpenID Connect) to the
concrete implementation details in the package.
For a concise quick-start (minimal and manual button examples,
options, and security checklist) see:
vignette("usage", package = "shinyOAuth").
For an explanation of logging key events during the flow, see:
vignette("audit-logging", package = "shinyOAuth").
The package implements the OAuth 2.0 ‘Authorization Code’ flow and optional ‘OpenID Connect’ (OIDC) checks end‑to‑end. Below is the sequence of operations and the rationale behind each step.
On the first load of your app, the module sets a small random cookie in the user’s browser (SameSite=Strict; Secure when over HTTPS). This browser token is mirrored to Shiny as an input. Its purpose is to ensure that the same browser that starts the OAuth 2.0 flow is the one that finishes it (a “double-submit” style CSRF defense).
If oauth_module_server(auto_redirect = TRUE), an
unauthenticated session triggers immediate redirection to the provider
authorization endpoint.
If oauth_module_server(auto_redirect = FALSE), you
manually call $request_login() (e.g., via a button) to do
so.
The browser of the app user will be redirected to the provider’s
authorization endpoint with the following parameters:
response_type=code, client_id,
redirect_uri, state=<sealed state>, PKCE
parameters, nonce (OIDC), scope, plus any
configured extra parameters.
The provider redirects the user’s browser back to your Shiny app
(your redirect_uri), including the code and
state parameters (and optionally error and
error_description on failure).
handle_callback())Once the user is redirected back to the app, the module processes the callback. This consists of the following steps:
issued_at
window)shinyOAuth_state_errorstate_store_lookup_failed,
state_store_removal_failed)Note: in asynchronous token exchange mode, the module may pre‑decrypt the sealed state and prefetch plus remove the state store entry on the main thread before handing work to the async worker, preserving the same single‑use and strict failure behavior.
If userinfo is requested via
oauth_provider(userinfo_required = TRUE) (for which you
should have a userinfo_url configured), the module calls
the userinfo endpoint with the access token and stores returned claims.
If this request fails, the flow aborts with an error.
When using oauth_provider(id_token_validation = TRUE),
the following verifications are performed:
options(shinyOAuth.allow_hs = TRUE)) and a sufficiently
strong server-held secretiss matches expected issuer; aud
vector contains client_id; sub present;
iat is required and must be a single finite numeric;
time-based claims (exp is required, nbf
optional) are evaluated with a small configurable leeway; tokens issued
in the future are rejectedtyp (when present): must indicate a JWT
(JWT, case-insensitive). Other values (e.g.,
at+jwt) are rejected for ID tokensoauth_provider(userinfo_id_token_match = TRUE), it is
checked that sub in userinfo equals sub in the
ID tokenSome providers support RFC 7662 token introspection (an additional endpoint where the server can ask the provider whether an access token is currently active and retrieve related metadata).
If you enable introspect = TRUE when creating your
oauth_client(), the module calls the provider’s
introspection endpoint during callback processing and requires the
response to indicate active = TRUE. If introspection is
unsupported by the provider or the introspection request fails, the
login is aborted and $authenticated is not set to
TRUE.
You can optionally enforce additional provider-dependent fields via
oauth_client(introspect_elements = ...):
"sub" – require introspection sub to match
the session subject"client_id" – require introspection
client_id to match your OAuth client id"scope" – validate introspection scope
against requested scopes (respects the client’s
scope_validation mode)(Note that not all providers may return each of these fields in introspection responses.)
OAuthToken objectNow that all verifications have passed, the module builds the final
token object. This is an S7 OAuthToken object which
contains:
access_token (string)refresh_token (optional string)expires_at (numeric timestamp, seconds since epoch;
Inf for non-expiring tokens)id_token (optional string)userinfo (optional list)The $authenticated value as returned by
oauth_module_server() now becomes TRUE, meaning all
requested verifications have passed.
The user’s browser was redirected to your app with OAuth 2.0 query
parameters (code, state, etc.). To improve UX
and avoid leaking sensitive data, these values are removed from the
address bar with JavaScript. Optionally, the page title may also be
adjusted (see the tab_title_ arguments in
oauth_module_server()).
The browser token cookie is also cleared and immediately re-issued with a fresh value, so a future flow can start with a new per-session token.
Now that the flow is complete, the module will manage the token lifetime during the active session. This may consist of:
$authenticated flag to FALSEoauth_module_server(reauth_after_seconds = ...) can force
periodic re-authenticationrefresh_token())When the module refreshes a session (or when you call
refresh_token() directly), it performs an OAuth 2.0 refresh
token grant against the provider’s token endpoint and updates the
OAuthToken object. This works as follows:
grant_type=refresh_token
and the current refresh_tokenaccess_token.
expires_at is updated from expires_in when
present; otherwise it is set to Infrefresh_token), it is stored; otherwise the original is
preservedoauth_provider(userinfo_required = TRUE), userinfo
is re-fetched using the fresh access tokenWith respect to OIDC ID token handling:
id_token. When omitted, the original id_token
from the initial login is preserved. Thus, a refresh does not
necessarily revalidate identityid_token during refresh,
shinyOAuth enforces OIDC 12.2 subject continuity: the refresh-returned
id_token must have the same sub as the
original id_token from login
id_token did not exist in the session,
and the refresh does return one, the refresh fails (cannot establish
subject claim match with no baseline)id_token_validation = TRUE, the refresh-returned
id_token is fully validated (signature + claims); the
sub claim match is enforced as part of validationid_token_validation = FALSE, shinyOAuth still
enforces the sub match by parsing the JWT payload (ensuring
that the sub claim still matches but without full
validation)If refresh fails inside oauth_module_server(), the
module exposes the failure via its reactive state (for example,
token_refresh_error). By default it also clears the current
session token; if
oauth_module_server(indefinite_session = TRUE), the token
is kept but marked stale. In all cases, the $authenticated
flag becomes FALSE while the error is present.
When auth$logout() is called, the module:
revocation_url is configured. This runs
asynchronously only when
oauth_module_server(async = TRUE)OAuthToken, browser
cookie)"logout" audit eventYou can also revoke tokens directly via
revoke_token(client, token, which = "refresh").
To automatically attempt revocation when a Shiny session ends (for
example, a tab close or session timeout), set
revoke_on_session_end = TRUE:
This is best-effort: the session may end while the provider is unavailable, and revocation failures do not block session cleanup.