View Source OIDC.Auth.OPResponseSuccess (oidc v0.5.0)

Data returned by the OP in case of authentication and authorization success, and successful validation of this returned data

Link to this section Summary

Link to this section Types

Specs

t() :: %OIDC.Auth.OPResponseSuccess{
  access_token: OIDC.access_token() | nil,
  access_token_expires_in: non_neg_integer() | nil,
  access_token_type: OIDC.access_token_type() | nil,
  granted_scopes: [OIDC.scope()],
  id_token: OIDC.id_token(),
  id_token_claims: OIDC.id_token_claims(),
  refresh_token: OIDC.refresh_token() | nil
}