<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.17 (Ruby 3.3.1) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-parecki-oauth-identity-assertion-authz-grant-01" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title abbrev="ID Token Authz Grant">Identity Assertion Authorization Grant</title>
    <seriesInfo name="Internet-Draft" value="draft-parecki-oauth-identity-assertion-authz-grant-01"/>
    <author fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
      </address>
    </author>
    <author fullname="Karl McGuinness">
      <organization>Independent</organization>
      <address>
        <email>public@karlmcguinness.com</email>
      </address>
    </author>
    <date year="2024" month="July" day="02"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>cross-domain</keyword>
    <keyword>authorization</keyword>
    <keyword>authz</keyword>
    <keyword>assertion</keyword>
    <keyword>enterprise</keyword>
    <abstract>
      <?line 55?>

<t>This specification provides a mechanism for an application to use an identity assertion to obtain an access token for a third-party API using Token Exchange <xref target="RFC8693"/> and JWT Profile for OAuth 2.0 Authorization Grants <xref target="RFC7523"/>.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://drafts.aaronpk.com/draft-parecki-oauth-identity-assertion-authz-grant/draft-parecki-oauth-identity-assertion-authz-grant.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-parecki-oauth-identity-assertion-authz-grant/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Web Authorization Protocol Working Group mailing list (<eref target="mailto:oauth@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/oauth/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/aaronpk/draft-parecki-oauth-identity-assertion-authz-grant"/>.</t>
    </note>
  </front>
  <middle>
    <?line 59?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The draft specification Identity Chaining Across Trust Domains <xref target="I-D.ietf-oauth-identity-chaining"/> defines how to request a JWT authorization grant from an Authorization Server and exchange it for an Access Token at another Authorization Server in a different trust domain. The specification is an application of a combination of OAuth 2.0 Token Exchange <xref target="RFC8693"/> and JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants <xref target="RFC7523"/>. The draft supports multiple different use cases by leaving many details of the token exchange request and JWT authorization grant unspecified.</t>
      <t>This specification defines the additional details necessary to support interoperable implementations when using identity tokens as the input to the token exchange request. This specification assumes that there is a single authorization server that is trusted by two applications in different trust domains, as typically found in an enterprise scenario where the two applications allow users to log in using the same enterprise identity provider. The same enterprise identity provider that is trusted by applications for single sign-on can be extended to broker access to APIs as well.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<section anchor="roles">
        <name>Roles</name>
        <dl>
          <dt>Client</dt>
          <dd>
            <t>Application that wants to obtain an OAuth 2.0 access token on behalf of a signed-in user to an external/3rd party application's API (Resource Server below). In <xref target="I-D.ietf-oauth-identity-chaining"/>, this is the Client in trust domain A.</t>
          </dd>
          <dt>Resource Application</dt>
          <dd>
            <t>Application that provides an OAuth 2.0 Protected Resource. In <xref target="I-D.ietf-oauth-identity-chaining"/>, this is the Protected Resource in trust domain B.</t>
          </dd>
          <dt>Authorization Server (IdP)</dt>
          <dd>
            <t>The Identity Provider that is trusted by a set of applications in an organization's app ecosystem. In <xref target="I-D.ietf-oauth-identity-chaining"/>, this is the Authorization Server in trust domain A, which is also trusted by the Authorization Server of the Protected Resource in trust domain B.</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>The example flow is for an enterprise <tt>acme</tt>, which uses a wiki app and chat app from different vendors, both of which are integrated into the enterprise's Identity Provider using OpenID Connect.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Role</th>
            <th align="left">App URL</th>
            <th align="left">Tenant URL</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Client</td>
            <td align="left">
              <tt>https://wiki.example</tt></td>
            <td align="left">
              <tt>https://acme.wiki.example</tt></td>
            <td align="left">Wiki app that embeds content from one or more resource applications</td>
          </tr>
          <tr>
            <td align="left">Resource Application</td>
            <td align="left">
              <tt>https://chat.example</tt></td>
            <td align="left">
              <tt>https://acme.chat.example</tt></td>
            <td align="left">Chat and communication app</td>
          </tr>
          <tr>
            <td align="left">Identity Provider</td>
            <td align="left">
              <tt>https://idp.example</tt></td>
            <td align="left">
              <tt>https://acme.idp.example</tt></td>
            <td align="left">Identity Provider</td>
          </tr>
        </tbody>
      </table>
      <t>Sequence Diagram</t>
      <artwork><![CDATA[
+---------+      +--------------+   +---------------+  +--------------+
|         |      |              |   |   Resource    |  |   Resource   |
|         |      |    IdP       |   |  Application  |  |  Application |
| Client  |      | Authorization|   | Authorization |  |   Resource   |
|         |      |   Server     |   |    Server     |  |    Server    |
+----+----+      +-------+------+   +-------+-------+  +------+-------+
     |                   |                  |                 |
     |                   |                  |                 |
     |  -------------->  |                  |                 |
     |   1 User SSO      |                  |                 |
     |                   |                  |                 |
     |     ID Token      |                  |                 |
     |  <- - - - - - - - |                  |                 |
     |                   |                  |                 |
     |                   |                  |                 |
     |                   |                  |                 |
     | 2 Token Exchange  |                  |                 |
     | ----------------> |                  |                 |
     |                   |                  |                 |
     |   ID-JAG          |                  |                 |
     | <- - - - - - - -  |                  |                 |
     |                   |                  |                 |
     |                   |                  |                 |
     |                   |                  |                 |
     |  3 Present ID-JAG |                  |                 |
     | ------------------+----------------> |                 |
     |                   |                  |                 |
     |    Access Token   |                  |                 |
     | <- - - - - - - - - - - - - - - - - - |                 |
     |                   |                  |                 |
     |                   |                  |                 |
     |                   |                  |                 |
     |  4 Resource Request with Access Token|                 |
     | -----------------------------------------------------> |
     |                   |                  |                 |
     |                   |                  |                 |
     |                   |                  |                 |
]]></artwork>
      <ol spacing="normal" type="1"><li>
          <t>User logs in to the Client, the Client obtains the Identity Assertion (e.g. OpenID Connect ID Token or SAML assertion)</t>
        </li>
        <li>
          <t>Client uses the Identity Assertion to request an Identity Assertion Authorization Grant for the Resource Application from the IdP</t>
        </li>
        <li>
          <t>Client exchanges the Identity Assertion Authorization Grant JWT for an Access Token at the Resource Application's token endpoint</t>
        </li>
        <li>
          <t>Client makes an API request with the Access Token</t>
        </li>
      </ol>
      <t>This specification is constrained to deployments where all Resource Application Resource Servers are leveraging the same IdP Authorization Server for Single-Sign-On (SSO) and session management services. The IdP provides a consistent trust boundary enabling the set of Resource Application Authorization Servers to honor the JWT Authorization Grant (ID-JAG) issued by the IdP. This specification also assumes that the Resource Server Authorization Servers delegate user authorization authority to the IdP (e.g. the IdP is trusted to ensure the scopes identified in the ID-JAG have been correctly authorized before issuing the ID-JAG token).</t>
    </section>
    <section anchor="user-authentication">
      <name>User Authentication</name>
      <t>The Client initiates an authentication request with the IdP using OpenID Connect or SAML.</t>
      <t>The following is an example using OpenID Connect</t>
      <artwork><![CDATA[
302 Redirect
Location: https://acme.idp.example/authorize?response_type=code&scope=openid&client_id=...
]]></artwork>
      <t>The user authenticates with the IdP, and is redirected back to the Client with an authorization code, which it can then exchange for an ID Token.</t>
      <t>Note: The Enterprise IdP may enforce security controls such as multi-factor authentication before granting the user access to the Client.</t>
      <artwork><![CDATA[
POST /token HTTP/1.1
Host: acme.idp.example
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code
&code=.....

HTTP/1.1 200 Ok
Content-Type: application/json

{
  "id_token": "eyJraWQiOiJzMTZ0cVNtODhwREo4VGZCXzdrSEtQ...",
  "token_type": "Bearer",
  "access_token": "7SliwCQP1brGdjBtsaMnXo",
  "scope": "openid"
}
]]></artwork>
    </section>
    <section anchor="token-exchange">
      <name>Token Exchange</name>
      <t>The Client makes a Token Exchange <xref target="RFC8693"/> request to the IdP's Token Endpoint with the following parameters:</t>
      <dl>
        <dt><tt>requested_token_type</tt>:</dt>
        <dd>
          <t><bcp14>REQUIRED</bcp14> - The value <tt>urn:ietf:params:oauth:token-type:id-jag</tt> indicates that an ID Assertion JWT is being requested.</t>
        </dd>
        <dt><tt>resource</tt>:</dt>
        <dd>
          <t><bcp14>REQUIRED</bcp14> - The token endpoint of the Resource Application.</t>
        </dd>
        <dt><tt>audience</tt>:</dt>
        <dd>
          <t>The audience parameter <bcp14>MUST NOT</bcp14> be used.</t>
        </dd>
        <dt><tt>scope</tt>:</dt>
        <dd>
          <t><bcp14>OPTIONAL</bcp14> - The space-separated list of scopes at the Resource Application that is being requested.</t>
        </dd>
        <dt><tt>subject_token</tt>:</dt>
        <dd>
          <t><bcp14>REQUIRED</bcp14> - The identity assertion (e.g. the OpenID Connect ID Token or SAML assertion) for the target end-user.</t>
        </dd>
        <dt><tt>subject_token_type</tt>:</dt>
        <dd>
          <t><bcp14>REQUIRED</bcp14> - An identifier, as described in Section 3 of <xref target="RFC8693"/>, that indicates the type of the security token in the <tt>subject_token</tt> parameter. For an OpenID Connect ID Token: <tt>urn:ietf:params:oauth:token-type:id_token</tt>, or for a SAML assertion: <tt>urn:ietf:params:oauth:token-type:saml2</tt>.</t>
        </dd>
      </dl>
      <t>The additional parameters defined in Section 2.1 of <xref target="RFC8693"/> <tt>actor_token</tt> and <tt>actor_token_type</tt> are not used in this specification.</t>
      <t>Client authentication to the authorization server is done using the standard mechanisms provided by OAuth 2.0. Section 2.3.1 of <xref target="RFC6749"/> defines password-based authentication of the client (<tt>client_id</tt> and <tt>client_secret</tt>), however, client authentication is extensible and other mechanisms are possible. For example, <xref target="RFC7523"/> defines client authentication using bearer JSON Web Tokens using <tt>client_assertion</tt> and <tt>client_assertion_type</tt>.</t>
      <t>The example below uses an ID Token as the Identity Assertion, and uses a JWT Bearer Assertion (<xref target="RFC7523"/>) as the client authentication method, (tokens truncated for brevity):</t>
      <artwork><![CDATA[
POST /oauth2/token HTTP/1.1
Host: acme.idp.example
Content-Type: application/x-www-form-urlencoded

grant_type=urn:ietf:params:oauth:grant-type:token-exchange
&requested_token_type=urn:ietf:params:oauth:token-type:id-jag
&resource=https://acme.chat.example/oauth2/token
&scope=chat.read+chat.history
&subject_token=eyJraWQiOiJzMTZ0cVNtODhwREo4VGZCXzdrSEtQ...
&subject_token_type=urn:ietf:params:oauth:token-type:id_token
&client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer
&client_assertion=eyJhbGciOiJSUzI1NiIsImtpZCI6IjIyIn0...
]]></artwork>
      <section anchor="processing-rules">
        <name>Processing Rules</name>
        <t>The IdP <bcp14>MUST</bcp14> validate the subject token, and <bcp14>MUST</bcp14> validate that the audience of the Subject Token (e.g. the <tt>aud</tt> claim of the ID Token) matches the <tt>client_id</tt> of the client authentication of the request.</t>
        <t>The IdP evaluates administrator-defined policy for the token exchange request and determines if the client should be granted access to act on behalf of the subject for the target audience and scopes.</t>
        <t>The IdP may also introspect the authentication context described in the SSO assertion to determine if step-up authentication is required.</t>
      </section>
      <section anchor="response">
        <name>Response</name>
        <t>If access is granted, the IdP creates a signed Identity Assertion Authorization Grant JWT and returns it in the token exchange response defined in Section 2.2 of <xref target="RFC8693"/>:</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store
Pragma: no-cache

{
  "issued_token_type": "urn:ietf:params:oauth:token-type:id-jag",
  "access_token": "eyJhbGciOiJIUzI1NiIsI...",
  "token_type": "N_A",
  "scope": "chat.read chat.history",
  "expires_in": 300
}
]]></artwork>
        <dl>
          <dt><tt>issued_token_type</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - <tt>urn:ietf:params:oauth:token-type:id-jag</tt></t>
          </dd>
          <dt><tt>access_token</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - The Identity Assertion Authorization Grant JWT. (Note: Token Exchange requires the <tt>access_token</tt> response parameter for historical reasons, even though this is not an OAuth access token.)</t>
          </dd>
          <dt><tt>token_type</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - <tt>N_A</tt> (because this is not an OAuth access token.)</t>
          </dd>
          <dt><tt>scope</tt>:</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14> if the scope of the issued token is identical to the scope requested by the client; otherwise, it is <bcp14>REQUIRED</bcp14>. This may be fewer scopes than the application requested based on various policies in the IdP.</t>
          </dd>
          <dt><tt>expires_in</tt>:</dt>
          <dd>
            <t><bcp14>RECOMMENDED</bcp14> - The lifetime in seconds of the authorization grant.</t>
          </dd>
          <dt><tt>refresh_token</tt>:</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14> according to Section 2.2 of <xref target="RFC8693"/>. In the context of this specification, this parameter <bcp14>SHOULD NOT</bcp14> be used.</t>
          </dd>
        </dl>
        <section anchor="error-response">
          <name>Error Response</name>
          <t>On an error condition, the IdP returns an OAuth 2.0 Token Error response as defined in Section 5.2 of <xref target="RFC6749"/>, e.g:</t>
          <artwork><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
  "error": "invalid_grant",
  "error_description": "Audience validation failed"
}
]]></artwork>
        </section>
      </section>
      <section anchor="jwt-authorization-grant">
        <name>Identity Assertion Authorization Grant JWT</name>
        <t>The Identity Assertion Authorization Grant JWT is issued and signed by the IdP, and describes the intended audience of the authorization grant as well as the client to which it was issued and the subject identifier of the resource owner, using the following claims:</t>
        <dl>
          <dt><tt>iss</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - The IdP <tt>issuer</tt> URL as defined in Section 4.1.1 of <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>sub</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - The subject identifier (e.g. user ID) of the resource owner at the Resource Application as defined in Section 4.1.2 of <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>aud</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - The token endpoint of the Resource Application's authorization server as defined in Section 4.1.3 of <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>client_id</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - An identifier of the client that this JWT was issued to, which <bcp14>MUST</bcp14> be recognized by the Resource Application's authorization server. For interoperability, the client identifier <bcp14>SHOULD</bcp14> be a <tt>client_id</tt> as defined in Section 4.3 <xref target="RFC8693"/>.</t>
          </dd>
          <dt><tt>jti</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - Unique ID of this JWT as defined in Section 4.1.7 of <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>exp</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - as defined in Section 4.1.4 of <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>iat</tt>:</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> - as defined in Section 4.1.6 of <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>scope</tt>:</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14> - a JSON string containing a space-separated list of scopes associated with the token, in the format described in Section 3.3 of <xref target="RFC6749"/></t>
          </dd>
        </dl>
        <t>The <tt>typ</tt> of the JWT indicated in the JWT header <bcp14>MUST</bcp14> be <tt>oauth-id-jag+jwt</tt>.</t>
        <t>An example JWT shown with expanded header and payload claims is below:</t>
        <artwork><![CDATA[
{
  "typ": "oauth-id-jag+jwt"
}
.
{
  "jti": "9e43f81b64a33f20116179",
  "iss": "https://acme.idp.example",
  "sub": "U019488227",
  "aud": "https://acme.chat.example/oauth2/token",
  "client_id": "f53f191f9311af35",
  "exp": 1311281970,
  "iat": 1311280970,
  "scope": "chat.read chat.history"
}
.
signature
]]></artwork>
        <t>The authorization server <bcp14>MAY</bcp14> add additional claims as necessary.</t>
        <t>Implementation notes:</t>
        <ul spacing="normal">
          <li>
            <t>If the IdP is multi-tenant and uses the same <tt>issuer</tt> for all tenants, the Resource Application will already have IdP-specific logic to determine the tenant from the OpenID Connect ID Token (e.g. the <tt>hd</tt> claim in Google) or SAML assertion, and will need to use that if the IdP also has only one client registration for the Resource Application.</t>
          </li>
          <li>
            <t><tt>sub</tt> should be an opaque ID, as <tt>iss</tt>+<tt>sub</tt> is unique. The IdP might want to also include the user's email here, which it should do as a new <tt>email</tt> claim. This would let the app dedupe existing users who may have an account with an email address but have not done SSO yet.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="token-request">
      <name>Access Token Request</name>
      <t>The Client makes an access token request to the Resource Application's token endpoint using the previously obtained Identity Assertion Authorization Grant as a JWT Assertion as defined by <xref target="RFC7523"/>.</t>
      <dl>
        <dt><tt>grant_type</tt>:</dt>
        <dd>
          <t><bcp14>REQUIRED</bcp14> - The value of <tt>grant_type</tt> is <tt>urn:ietf:params:oauth:grant-type:jwt-bearer</tt></t>
        </dd>
        <dt><tt>assertion</tt>:</dt>
        <dd>
          <t><bcp14>REQUIRED</bcp14> - The Identity Assertion Authorization Grant JWT obtained in the previous token exchange step</t>
        </dd>
      </dl>
      <t>The Client authenticates with its credentials as registered with the Resource Application's authorization server.</t>
      <t>For example:</t>
      <artwork><![CDATA[
POST /oauth2/token HTTP/1.1
Host: acme.chat.example
Authorization: Basic yZS1yYW5kb20tc2VjcmV0v3JOkF0XG5Qx2

grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer
assertion=eyJhbGciOiJIUzI1NiIsI...
]]></artwork>
      <section anchor="processing-rules-1">
        <name>Processing Rules</name>
        <t>All of Section 5.2 of <xref target="RFC7521"/> applies, in addition to the following processing rules:</t>
        <ul spacing="normal">
          <li>
            <t>Validate the JWT <tt>typ</tt> is <tt>oauth-id-jag+jwt</tt> (per <xref target="RFC8725"/>)</t>
          </li>
          <li>
            <t>The <tt>aud</tt> claim <bcp14>MUST</bcp14> identify the token endpoint of the Resource Application as the intended audience of the JWT.</t>
          </li>
          <li>
            <t>The <tt>client_id</tt> claim <bcp14>MUST</bcp14> identify the same client as the client authentication in the request.</t>
          </li>
        </ul>
      </section>
      <section anchor="response-1">
        <name>Response</name>
        <t>The Resource Application token endpoint responds with an OAuth 2.0 Token Response, e.g.:</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache

{
  "token_type": "Bearer",
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "expires_in": 86400,
  "scope": "chat.read chat.history",
  "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",
}
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="client-authentication">
        <name>Client Authentication</name>
        <t>This specification <bcp14>SHOULD</bcp14> only be supported for confidential clients.  Public clients <bcp14>SHOULD</bcp14> redirect the user with an OAuth 2.0 Authorization Request.</t>
      </section>
      <section anchor="step-up-authentication">
        <name>Step-Up Authentication</name>
        <t>In the initial token exchange request, the IdP may require step-up authentication for the subject if the authentication context in the subject's assertion does not meet policy requirements. An <tt>insufficient_user_authentication</tt> OAuth error response may be returned to convey the authentication requirements back to the client similar to OAuth 2.0 Step-up Authentication Challenge Protocol <xref target="RFC9470"/>.</t>
        <artwork><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
  "error": "insufficient_user_authentication",
  "error_description": "Subject doesn't meet authentication requirements",
  "max_age": 5
}
]]></artwork>
        <t>The Client would need to redirect the user back to the IdP to obtain a new assertion that meets the requirements and retry the token exchange.</t>
        <t>TBD: It may make more sense to request the Identity Assertion Authorization Grant as an additional <tt>response_type</tt> on the authorization request if using OIDC for SSO when performing a step-up to skip the need for additional token exchange round-trip.</t>
      </section>
      <section anchor="cross-domain-use">
        <name>Cross-Domain Use</name>
        <t>This specification is intended for cross-domain uses where the Client, Resource App, and Identity Provider are all in different trust domains. In particular, the Identity Provider <bcp14>SHOULD NOT</bcp14> issue access tokens in response to an ID-JAG it issued itself. Doing so could lead to unintentional broadening of the scope of authorization.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="media-types">
        <name>Media Types</name>
        <t>This section registers <tt>oauth-id-jag+jwt</tt>, a new media type <xref target="RFC2046"/> in the "Media Types" registry <xref target="IANA.MediaTypes"/> in the manner described in <xref target="RFC6838"/>. It can be used to indicate that the content is a Identity Assertion Authorization Grant JWT.</t>
      </section>
      <section anchor="oauth-uri-registration">
        <name>OAuth URI Registration</name>
        <t>This section registers <tt>urn:ietf:params:oauth:token-type:id-jag</tt> in the "OAuth URI" subregistry of the "OAuth Parameters" registry <xref target="IANA.oauth-parameters"/>.</t>
        <ul spacing="normal">
          <li>
            <t>URN: urn:ietf:params:oauth:token-type:id-jag</t>
          </li>
          <li>
            <t>Common Name: Token type URI for a Identity Assertion JWT Authorization Grant</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Specification Document: This document</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC7521">
          <front>
            <title>Assertion Framework for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="Y. Goland" initials="Y." surname="Goland"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification provides a framework for the use of assertions with OAuth 2.0 in the form of a new client authentication mechanism and a new authorization grant type. Mechanisms are specified for transporting assertions during interactions with a token endpoint; general processing rules are also specified.</t>
              <t>The intent of this specification is to provide a common framework for OAuth 2.0 to interwork with other identity systems using assertions and to provide alternative client authentication mechanisms.</t>
              <t>Note that this specification only defines abstract message flows and processing rules. In order to be implementable, companion specifications are necessary to provide the corresponding concrete instantiations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7521"/>
          <seriesInfo name="DOI" value="10.17487/RFC7521"/>
        </reference>
        <reference anchor="RFC7523">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification defines the use of a JSON Web Token (JWT) Bearer Token as a means for requesting an OAuth 2.0 access token as well as for client authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7523"/>
          <seriesInfo name="DOI" value="10.17487/RFC7523"/>
        </reference>
        <reference anchor="RFC8693">
          <front>
            <title>OAuth 2.0 Token Exchange</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="A. Nadalin" initials="A." surname="Nadalin"/>
            <author fullname="B. Campbell" initials="B." role="editor" surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>This specification defines a protocol for an HTTP- and JSON-based Security Token Service (STS) by defining how to request and obtain security tokens from OAuth 2.0 authorization servers, including security tokens employing impersonation and delegation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8693"/>
          <seriesInfo name="DOI" value="10.17487/RFC8693"/>
        </reference>
        <reference anchor="RFC8725">
          <front>
            <title>JSON Web Token Best Current Practices</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas. This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="225"/>
          <seriesInfo name="RFC" value="8725"/>
          <seriesInfo name="DOI" value="10.17487/RFC8725"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-identity-chaining">
          <front>
            <title>OAuth Identity and Authorization Chaining Across Domains</title>
            <author fullname="Arndt Schwenkschuster" initials="A." surname="Schwenkschuster">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Pieter Kasselman" initials="P." surname="Kasselman">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Kelley Burgin" initials="K." surname="Burgin">
              <organization>MITRE</organization>
            </author>
            <author fullname="Michael J. Jenkins" initials="M. J." surname="Jenkins">
              <organization>NSA-CCSS</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date day="19" month="February" year="2024"/>
            <abstract>
              <t>   This specification defines a mechanism to preserve identity
   information and federate authorization across trust domains that use
   the OAuth 2.0 Framework.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Discussion of this document takes place on the Web Authorization
   Protocol Working Group mailing list (oauth@ietf.org), which is
   archived at https://mailarchive.ietf.org/arch/browse/oauth/.

   Source for this draft and an issue tracker can be found at
   https://github.com/oauth-wg/oauth-identity-chaining.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-identity-chaining-01"/>
        </reference>
        <reference anchor="IANA.MediaTypes">
          <front>
            <title>*** BROKEN REFERENCE ***</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="IANA.oauth-parameters" target="http://www.iana.org/assignments/oauth-parameters">
          <front>
            <title>OAuth Parameters</title>
            <author>
              <organization>IANA</organization>
            </author>
          </front>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC2046">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2046"/>
          <seriesInfo name="DOI" value="10.17487/RFC2046"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC9470">
          <front>
            <title>OAuth 2.0 Step Up Authentication Challenge Protocol</title>
            <author fullname="V. Bertocci" initials="V." surname="Bertocci"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <date month="September" year="2023"/>
            <abstract>
              <t>It is not uncommon for resource servers to require different authentication strengths or recentness according to the characteristics of a request. This document introduces a mechanism that resource servers can use to signal to a client that the authentication event associated with the access token of the current request does not meet its authentication requirements and, further, how to meet them. This document also codifies a mechanism for a client to request that an authorization server achieve a specific authentication strength or recentness when processing an authorization request.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9470"/>
          <seriesInfo name="DOI" value="10.17487/RFC9470"/>
        </reference>
      </references>
    </references>
    <?line 444?>

<section anchor="use-cases">
      <name>Use Cases</name>
      <section anchor="enterprise-deployment">
        <name>Enterprise Deployment</name>
        <t>Enterprises often have hundreds of SaaS applications.  SaaS applications often have integrations to other SaaS applications that are critical to the application experience and jobs to be done.  When a SaaS app needs to request an access token on behalf of a user to a 3rd party SaaS integration's API, the end-user typically needs to complete an interactive delegated OAuth 2.0 flow, as the SaaS application is not in the same security or policy domain as the 3rd party SaaS integration.</t>
        <t>It is industry best practice for an enterprise to connect their ecosystem of SaaS applications to their Identity Provider (IdP) to centralize identity and access management capabilites for the organization.  End-users get a better experience (SSO) and administrators get better security outcomes such multi-factor authentication and zero-trust.  SaaS applications today enable the administrator to establish trust with an IdP for user authentication.</t>
        <t>This specification can be used to extend the SSO relationship of multiple SaaS applications to include API access between these applications as well. This specification enables federation for Authorization Servers across policy or administrative boundaries. The same enterprise IdP that is trusted by applications for SSO can be extended to broker access to APIs.  This enables the enterprise to centralize more access decisions across their SaaS ecosystem and provides better end-user experience for users that need to connect multiple applications via OAuth 2.0.</t>
        <section anchor="preconditions">
          <name>Preconditions</name>
          <ul spacing="normal">
            <li>
              <t>The Client has a registered OAuth 2.0 Client with the IdP Authorization Server</t>
            </li>
            <li>
              <t>The Client has a registered OAuth 2.0 Client with the Resource Application</t>
            </li>
            <li>
              <t>Enterprise has established a trust relationship between their IdP and the Client for SSO and Identity Assertion Authorization Grant</t>
            </li>
            <li>
              <t>Enterprise has established a trust relationship between their IdP and the Resource Application for SSO and Identity Assertion Authorization Grant</t>
            </li>
            <li>
              <t>Enterprise has granted the Client permission to act on behalf of users for the Resource Application with a set of scopes</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="email-and-calendaring-applications">
        <name>Email and Calendaring Applications</name>
        <t>Email clients can be used with arbitrary email servers, and cannot require pre-established relationships between each email client and each email server. When an email client uses OAuth to obtain an access token to an email server, this provides the security benefit of being able to use strong multi-factor authentication methods provided by the email server's authorization server, but does require that the user go through a web-based flow to log in to the email client. However, this web-based flow is often seen as distruptive to the user experience when initiated from a desktop or mobile native application, and so is often attempted to be minimized as much as possible.</t>
        <t>When the email client needs access to a separate API, such as a third-party calendaring application, traditionally this would require that the email client go through another web-based OAuth redirect flow to obtain authorization and ultimately an access token.</t>
        <t>To streamline the user experience, this specification can be used to enable the email client to use the identity assertion to obtain an access token for the third-party calendaring application without any user interaction.</t>
        <section anchor="preconditions-1">
          <name>Preconditions</name>
          <ul spacing="normal">
            <li>
              <t>The Client does not have a pre-registered OAuth 2.0 client at the IdP Authorization Server or the Resource Application</t>
            </li>
            <li>
              <t>The Client has obtained an Identity Assertion (e.g. ID Token) from the IdP Authorization Server</t>
            </li>
            <li>
              <t>The Resource Application is configured to allow the Identity Assertion Authorization Grant from unregistered clients</t>
            </li>
          </ul>
        </section>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank the following people for their contributions and reviews of this specification: Brian Campbell, Kamron Batmanghelich, Sofia Desenberg.</t>
    </section>
    <section numbered="false" anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <ul spacing="normal">
        <li>
          <t>01</t>
        </li>
        <li>
          <t>Corrected the <tt>scope</tt> property in the JWT to match token exchange and JWT access token profile</t>
        </li>
        <li>
          <t>Formatting and editorial fixes</t>
        </li>
        <li>
          <t>00</t>
        </li>
        <li>
          <t>Initial revision</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
JCD+PCvQ9jBb2GBOhKPrqBKGbnncjfVwtX89pL3DTczm8yp1Bg5AisutboOh
tJtVxXk9X7iyXuPnrvk+BcEILa0UcDpSApgCfE1c457bgHu86L1e48+91SZs
a/cKGF7751PjH78V/3fU5e+tpk/XzAXipzlXY38+rTTZuQxf1XM1zvin1abb
wWVkhI9jq63V9Kmm/b0O2t9bpb371zXda9C+i97r2labPv3hczT547uvg2MQ
vkFlPhqdfjUcNxhwkzlcrPNr5/hLL2z+96/D5d9hjp22x/4Vc7SkEjDZv4oe
J0e9Hw6e/545Vtjj//He/iFz7ILukhqFtiHu7+ePWmReyzL/G/RohMr+EP7o
+u//y97+EXPs1ar5tYmLLRTYvz6lb80fN/jz3b8pPb52jmDQZyWbZFNyzIyb
wBbTlu/TskvOjlZHsvCu7E/7Lc+h1ptgc48OXr6oo/abwU7fzkzuzppp/fB1
2tWhIyxL/hXO12nHkx/Aq50Fuw4IG5JcC0nXQhiHXRMOX7f+NzaCAX5bnoFf
Fuw5GObikv1+DEwUPl+TY+qt0BncVeTsYLpFpRzXi2WeZEuMfmkTrcTAVCdZ
WmEQTR5kIuGjmDailmiEd/rISIgRhRp7Iww1ngJTgO22SZ4PbDGmcTHQLaYU
P6aQrQKU+iaecOangxARpcs6RDvGYCxGpsHnHCcOIg4vdGLUBSQFl2ZZahgE
969rX++y1tkEkuqqDg0AjN2RagwjtMPVbYqugSeWiZyCj86Bq2ZQ23yjiLoF
wBw0+82Lt0AfTISbkLSOshyg4ZgJJgQ4ICqtQp2JKxmOJTBilBUFHNZk6VZH
jOUko4C7riytzUDi3k0OCpPoaOZKOOLh4mCqVJgjpnROM6eywt+ITlf8wQqP
Pk89yTC2TvkGzVE+Dq50DWUnd3d7BzYjVoglNbzIIpOhXedG33ek+CvYITnW
GLzD9PyTKIvln4i2T+D/VMV/igjVdyp+0u8bEN1WGnQBfx9LDh4D9IUBCukt
osum8OUhIm3xBALgIlglBfNxnTqlYuSRFb0A0quslBy0O64jTkjtucDjBAMi
PElcK0HxkiJLgMcrjCOZHFZvIqIyK9qbaNiEsk+WTxh7l0qoMerzdpydjs7D
+ywEvz8/P7s/6A/oh+8zrCVobwX9dMhBnN45lUh4AZv7H3qLxaKHGeheVSQy
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
Em2G4H8AEBIifcBfAAA=

-->

</rfc>
