ID Token
OpenID Connect Core 1.0 incorporating errata set 2 - IDToken (openid.net)
An ID Token in OpenID Connect is a digital security document, specifically a JSON Web Token (JWT) (datatracker.ietf.org), that acts as proof a user has been authenticated by an OpenID Provider (OP). It contains claims (information) about the user and the authentication event.
OpenID Connect introduces the ID Token as an extension to OAuth 2.0 that allows users to be authenticated. The ID Token contains information in form of Claims about the authentication.
ID Tokens are signed using JWS (datatracker.ietf.org) and optionally the signed token is encrypted using JWS and JWE (datatracker.ietf.org) to provide integrity, authenticity, and confidentiality.
Example of an ID Token
ID Token
{
"iss": "https://server.example.com", // Issuer that created and signed this token
"sub": "24400320", // Subject for the End-User whom the token refers to
// Audiences who the ID Token is intended for as
// one or multiple OAuth 2.0 client_id
"aud": [
"170084138865393921",
"170084137741451521"
],
"exp": 1311281970, // Expiration time (Unix Timestamp)
"iat": 1311280970, // Issued at (Unix Timestamp)
"auth_time": 1311280969, // Time when end-user authentication occurred (Unix Timestamp)
"nonce": "n-0S6_WzA2Mj", // Associates Client session to token
// Identifies the Authentication Context Class or Level of Assurance that
// the authentication performed satisfies
"acr": "urn:mace:incommon:iap:silver",
// Authentication Methods References array
"amr": [
"user", // User presence test
"mfa" // Multiple-factor authentication
],
// Authorized party as OAuth 2.0 client_id to which the ID Token was issued
"azp": "170084138898948353",
"at_hash": "", //Authorized Party
"c_hash": "", // Code hash value mitigating token substitution (Hybrid Flow)
}
Resources
- JSON Web Token (JWT) (datatracker.ietf.org)
- JSON Web Signature (JWS) (datatracker.ietf.org)
- JSON Web Encryption (JWE) (datatracker.ietf.org)
- https://stackoverflow.com/questions/52632690/can-someone-explain-acr-return-values-in-oidc (stackoverflow.com)
- Level of Assurance (LoA) Profiles (iana.org)
- An IANA Registry for Level of Assurance (LoA) Profiles [RFC6711] (rfc-editor.org)
- Identity Assurance Qualifiers (was LOA)--A Recommended URI Profile for InCommon (spaces.at.internet2.edu)