auth.provider API
    Preparing search index...
    • Generates a signed id_token JWT (OIDC 1.0 Core §2).

      Claim composition:

      • iss = issuer
      • sub (required)
      • aud (required)
      • azp (optional, added when provided)
      • exp / iat (seconds since epoch)
      • auth_time (seconds since epoch, from authTime)
      • sid (session identifier for back-channel logout)
      • nonce (when provided by the authorize request)
      • scope-filtered user claims via filterClaimsByScope

      Header: typ: "id+jwt" (RFC 9068 is at+jwt; id_token is in the OIDC family but we use typ for introspection convenience — the header is a hint, not spec-mandated).

      Parameters

      Returns Promise<Token>