<?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.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-parecki-oauth-first-party-apps-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.0 -->
  <front>
    <title abbrev="OAuth for First-Party Apps">OAuth 2.0 for First-Party Applications</title>
    <seriesInfo name="Internet-Draft" value="draft-parecki-oauth-first-party-apps-02"/>
    <author fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
      </address>
    </author>
    <author fullname="George Fletcher">
      <organization>Capital One Financial</organization>
      <address>
        <email>george.fletcher@capitalone.com</email>
      </address>
    </author>
    <author fullname="Pieter Kasselman">
      <organization>Microsoft</organization>
      <address>
        <email>pieter.kasselman@microsoft.com</email>
      </address>
    </author>
    <date year="2024" month="July" day="08"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <keyword>native apps</keyword>
    <keyword>first-party</keyword>
    <keyword>oauth</keyword>
    <abstract>
      <?line 88?>

<t>This document defines the Authorization Challenge Endpoint, which supports
a first-party client that wants to control the process of
obtaining authorization from the user using a native experience.</t>
      <t>In many cases, this can provide an entirely browserless OAuth 2.0 experience suited for native
applications, only delegating to the browser in unexpected, high risk, or error conditions.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://aaronpk.github.io/oauth-first-party-apps/draft-parecki-oauth-first-party-apps.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-parecki-oauth-first-party-apps/"/>.
      </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/oauth-first-party-apps"/>.</t>
    </note>
  </front>
  <middle>
    <?line 98?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document, OAuth for First-Party Apps (FiPA),
extends the OAuth 2.0 Authorization Framework <xref target="RFC6749"/> with
a new endpoint, <tt>authorization_challenge_endpoint</tt>, to support first-party
applications that want to control the process of obtaining authorization from
the user using a native experience.</t>
      <t>The client collects any initial information from the user and POSTs that information
as well as information about the client's request to the Authorization Challenge Endpoint,
and receives either an authorization code or an error code in response. The error code
may indicate that the client can continue to prompt the user for more information,
or can indicate that the client needs to launch a browser to have the user complete
the flow in a browser.</t>
      <t>The Authorization Challenge Endpoint is used to initiate the OAuth flow in place of redirecting
or launching a browser to the authorization endpoint.</t>
      <t>While a fully-delegated approach using the redirect-based Authorization Code grant is generally
preferred, this draft provides a mechanism for the client to directly interact
with the user. This requires a high degree of trust between the authorization server
and the client, as there typically is for first-party applications.
It should only be considered when there are usability
concerns with a redirect-based approach, such as for native mobile or desktop applications.</t>
      <t>This draft also extends the token response (typically for use in response to a refresh token request) and resource server response to allow the authorization server or resource server to indicate that the client should re-request authorization from the user. This can include requesting step-up authentication by including parameters defined in <xref target="RFC9470"/> as well.</t>
      <section anchor="usage-and-applicability">
        <name>Usage and Applicability</name>
        <t>This specification <bcp14>MUST</bcp14> only be used by first-party applications, which is when the authorization server and application are controlled by the same entity and the user understands them both as the same entity.</t>
        <t>This specification <bcp14>MUST NOT</bcp14> be used by third party applications, and the authorization server <bcp14>SHOULD</bcp14> take measures to prevent use by third party applications. (e.g. only enable this grant for certain client IDs, and take measures to authenticate first-party apps when possible.)</t>
        <t>Using this specification in scenarios other than those described will lead to unintended security and privacy problems for users and service providers.</t>
        <t>This specification is designed to be used by first-party native applications, which includes both mobile and desktop applications.</t>
        <t>If you provide multiple apps and expect users to use multiple apps on the same device, there may be better ways of sharing a user's login between the apps other than each app implementing this specification or using an SDK that implements this specification. For example, <xref target="OpenID.Native-SSO"/> provides a mechanism for one app to obtain new tokens by exchanging tokens from another app, without any user interaction. See <xref target="multiple-applications"/> for more details.</t>
      </section>
      <section anchor="limitations-of-this-specification">
        <name>Limitations of this specification</name>
        <t>The scope of this specification is limited to first-party applications. Please review the entirety of <xref target="security-considerations"/>, and when more than one first-party application is supported, <xref target="multiple-applications"/>.</t>
        <t>While this draft provides the framework for a native OAuth experience, each implementation
will need to define the specific behavior that it expects from OAuth clients interacting with the authorization server. While this lack of clearly defining the details would typically lead to less interoperability, it is acceptable in this case since we intend this specification to be deployed in a tightly coupled environment since it is only applicable to first-party applications.</t>
      </section>
      <section anchor="user-experience-considerations">
        <name>User Experience Considerations</name>
        <t>It is important to consider the user experience implications of different authentication challenges as well as the device with which the user is attempting to authorize.</t>
        <t>For example, requesting a user to enter a password on a limited-input device (e.g. TV) creates a lot of user friction while also exposing the user's password to anyone else in the room. On the other hand, using a challenge method that involves, for example, a fingerprint reader on the TV remote allowing for a FIDO2 passkey authentication would be a good experience.</t>
        <t>The Authorization Server <bcp14>SHOULD</bcp14> consider the user's device when presenting authentication challenges and developers <bcp14>SHOULD</bcp14> consider whether the device implementing this specification can provide a good experience for the user. If the combination of user device and authentication challenge methods creates a lot of friction or security risk, consider using a specification like OAuth 2.0 Device Authorization Grant <xref target="RFC8628"/>. If selecting OAuth 2.0 Device Authorization Grant <xref target="RFC8628"/> which uses a cross-device authorization mechanism, please incorporate the security best practices identified in Cross-Device Flows: Security Best Current Practice <xref target="I-D.ietf-oauth-cross-device-security"/>.</t>
      </section>
    </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="terminology">
        <name>Terminology</name>
        <t>This specification uses the terms "Access Token", "Authorization Code",
"Authorization Endpoint", "Authorization Server" (AS), "Client", "Client Authentication",
"Client Identifier", "Client Secret", "Grant Type", "Protected Resource",
"Redirection URI", "Refresh Token", "Resource Owner", "Resource Server" (RS)
and "Token Endpoint" defined by <xref target="RFC6749"/>.</t>
        <t>TODO: Replace RFC6749 references with OAuth 2.1</t>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>There are three primary ways this specification extends various parts of an OAuth system.</t>
      <section anchor="initial-authorization-request">
        <name>Initial Authorization Request</name>
        <artwork type="ascii-art"><![CDATA[
                                                +-------------------+
                                                |   Authorization   |
                          (B)Authorization      |      Server       |
             +----------+    Challenge Request  |+-----------------+|
(A)Client+---|  First-  |---------------------->||  Authorization  ||
   Starts|   |  Party   |                       ||   Challenge     ||
   Flow  +-->|  Client  |<----------------------||    Endpoint     ||
             |          | (C)Authorization      ||                 ||
             |          |    Error Response     ||                 ||
             |          |         :             ||                 ||
             |          |         :             ||                 ||
             |          | (D)Authorization      ||                 ||
             |          |    Challenge Request  ||                 ||
             |          |---------------------->||                 ||
             |          |                       ||                 ||
             |          |<----------------------||                 ||
             |          | (E) Authorization     |+-----------------+|
             |          |     Code Response     |                   |
             |          |                       |                   |
             |          |                       |                   |
             |          |                       |                   |
             |          | (F) Token             |                   |
             |          |     Request           |+-----------------+|
             |          |---------------------->||      Token      ||
             |          |                       ||     Endpoint    ||
             |          |<----------------------||                 ||
             |          | (G) Access Token      |+-----------------+|
             |          |                       |                   |
             +----------+                       +-------------------+
]]></artwork>
        <t>Figure: First-Party Client Authorization Code Request</t>
        <ul spacing="normal">
          <li>
            <t>(A) The first-party client starts the flow, by presenting the user with a "sign in" button, or collecting information from the user, such as their email address or username.</t>
          </li>
          <li>
            <t>(B) The client initiates the authorization request by making a POST request to the Authorization Challenge Endpoint, optionally with information collected from the user (e.g. email or username)</t>
          </li>
          <li>
            <t>(C) The authorization server determines whether the information provided to the Authorization Challenge Endpoint is sufficient to grant authorization, and either responds with an authorization code or responds with an error. In this example, it determines that additional information is needed and responds with an error. The error may contain additional information to guide the Client on what information to collect next. This pattern of collecting information, submitting it to the Authorization Challenge Endpoint and then receiving an error or authorization code may repeat several times.</t>
          </li>
          <li>
            <t>(D) The client gathers additional information (e.g. signed passkey challenge, or one-time code from email) and makes a POST request to the Authorization Challenge Endpoint.</t>
          </li>
          <li>
            <t>(E) The Authorization Challenge Endpoint returns an authorization code.</t>
          </li>
          <li>
            <t>(F) The client sends the authorization code received in step (E) to obtain a token from the Token Endpoint.</t>
          </li>
          <li>
            <t>(G) The Authorization Server returns an Access Token from the Token Endpoint.</t>
          </li>
        </ul>
      </section>
      <section anchor="refresh-token-request">
        <name>Refresh Token Request</name>
        <t>When the client uses a refresh token to obtain a new access token, the authorization server <bcp14>MAY</bcp14> respond with an error to indicate that re-authorization of the user is required.</t>
      </section>
      <section anchor="resource-request">
        <name>Resource Request</name>
        <t>When making a resource request to a resource server, the resource server <bcp14>MAY</bcp14> respond with an error according to OAuth 2.0 Step-Up Authentication Challenge Protocol <xref target="RFC9470"/>, indicating that re-authorization of the user is required.</t>
      </section>
    </section>
    <section anchor="protocol-endpoints">
      <name>Protocol Endpoints</name>
      <section anchor="authorization-challenge-endpoint">
        <name>Authorization Challenge Endpoint</name>
        <t>The authorization challenge endpoint is a new endpoint defined by this specification which the first-party application uses to obtain an authorization code.</t>
        <t>The authorization challenge endpoint is an HTTP API at the authorization server that accepts HTTP POST requests with parameters in the HTTP request message body using the <tt>application/x-www-form-urlencoded</tt> format. This format has a character encoding of UTF-8, as described in Appendix B of <xref target="RFC6749"/>. The authorization challenge endpoint URL <bcp14>MUST</bcp14> use the "https" scheme.</t>
        <t>If the authorization server requires client authentication for this client on the Token Endpoint, then the authorization server <bcp14>MUST</bcp14> also require client authentication for this client on the Authorization Challenge Endpoint. See <xref target="client-authentication"/> for more details.</t>
        <t>Authorization servers supporting this specification <bcp14>SHOULD</bcp14> include the URL of their authorization challenge endpoint in their authorization server metadata document <xref target="RFC8414"/> using the <tt>authorization_challenge_endpoint</tt> parameter as defined in <xref target="authorization-server-metadata"/>.</t>
        <t>The endpoint accepts the authorization request parameters defined in <xref target="RFC6749"/> for the authorization endpoint as well
as all applicable extensions defined for the authorization endpoint. Some examples of such extensions include Proof
Key for Code Exchange (PKCE) <xref target="RFC7636"/>, Resource Indicators <xref target="RFC8707"/>, and OpenID Connect <xref target="OpenID"/>. It is
important to note that some extension parameters have meaning in a web context but don't have meaning in a native
mechanism (e.g. <tt>response_mode=query</tt>). It is out of scope as to what the AS does in the case that an extension
defines a parameter that has no meaning in this use case.</t>
        <t>The client initiates the authorization flow with or without information collected from the user (e.g. a signed passkey challenge or MFA code).</t>
        <t>The authorization challenge endpoint response is either an authorization code or an error code, and may also contain an <tt>auth_session</tt> which the client uses on subsequent requests.</t>
        <t>Further communication between the client and authorization server <bcp14>MAY</bcp14> happen at the Authorization Challenge Endpoint or any other proprietary endpoints at the authorization server.</t>
      </section>
      <section anchor="token-endpoint">
        <name>Token endpoint</name>
        <t>The token endpoint is used by the client to obtain an access token by
presenting its authorization grant or refresh token, as described in
Section 3.2 of OAuth 2.0 <xref target="RFC6749"/>.</t>
        <t>This specification extends the token endpoint response to allow the authorization
server to indicate that further authentication of the user is required.</t>
      </section>
    </section>
    <section anchor="authorization-initiation">
      <name>Authorization Initiation</name>
      <t>A client may wish to initiate an authorization flow by first prompting the user for their user identifier or other account information. The authorization challenge endpoint is a new endpoint to collect this login hint and direct the client with the next steps, whether that is to do an MFA flow, or perform an OAuth redirect-based flow.</t>
      <t>In order to preserve the security of this specification, the Authorization Server <bcp14>MUST</bcp14> verify the "first-partyness" of the client before continuing with the authentication flow. Please see <xref target="first-party-applications"/> for additional considerations.</t>
      <section anchor="challenge-request">
        <name>Authorization Challenge Request</name>
        <t>The client makes a request to the authorization challenge endpoint by adding the
following parameters, as well as parameters from any extensions, using the <tt>application/x-www-form-urlencoded</tt>
format with a character encoding of UTF-8 in the HTTP request body:</t>
        <dl>
          <dt>"client_id":</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> if the client is not authenticating with the
authorization server and if no <tt>auth_session</tt> is included.</t>
          </dd>
          <dt>"scope":</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The OAuth scope defined in <xref target="RFC6749"/>.</t>
          </dd>
          <dt>"auth_session":</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. If the client has previously obtained an auth session, described in <xref target="auth-session"/>.</t>
          </dd>
          <dt>"code_challenge":</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The code challenge as defined by <xref target="RFC7636"/>.
See <xref target="redirect-to-web"/> for details.</t>
          </dd>
          <dt>"code_challenge_method":</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The code challenge method as defined by <xref target="RFC7636"/>.
See <xref target="redirect-to-web"/> for details.</t>
          </dd>
        </dl>
        <t>Specific implementations as well as extensions to this specification <bcp14>MAY</bcp14> define additional parameters to be used at this endpoint.</t>
        <t>For example, the client makes the following request to initiate a flow
given the user's phone number, line breaks shown for illustration purposes only:</t>
        <artwork><![CDATA[
POST /authorize-challenge HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

login_hint=%2B1-310-123-4567&scope=profile
&client_id=bb16c14c73415
]]></artwork>
      </section>
      <section anchor="challenge-response">
        <name>Authorization Challenge Response</name>
        <t>The authorization server determines whether the information provided up to this point is sufficient to issue an authorization code, and if so responds with an authorization code. If the information is not sufficient for issuing an authorization code, then the authorization server <bcp14>MUST</bcp14> respond with an error response.</t>
        <section anchor="authorization-code-response">
          <name>Authorization Code Response</name>
          <t>The authorization server issues an authorization code
by creating an HTTP response content using the <tt>application/json</tt>
media type as defined by <xref target="RFC8259"/> with the following parameters
and an HTTP 200 (OK) status code:</t>
          <dl>
            <dt>"authorization_code":</dt>
            <dd>
              <t><bcp14>REQUIRED</bcp14>. The authorization code issued by the authorization server.</t>
            </dd>
          </dl>
          <t>For example,</t>
          <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "authorization_code": "uY29tL2F1dGhlbnRpY"
}
]]></artwork>
        </section>
        <section anchor="challenge-error-response">
          <name>Error Response</name>
          <t>If the request contains invalid parameters or incorrect data,
or if the authorization server wishes to interact with the user directly,
the authorization server responds with an HTTP 400 (Bad Request)
status code (unless specified otherwise below) and includes the following
parameters with the response:</t>
          <dl>
            <dt>"error":</dt>
            <dd>
              <t><bcp14>REQUIRED</bcp14>.  A single ASCII <xref target="USASCII"/> error code from the following:
</t>
              <dl>
                <dt>"invalid_request":</dt>
                <dd>
                  <t>The request is missing a required parameter, includes an
unsupported parameter value,
repeats a parameter, includes multiple credentials,
utilizes more than one mechanism for authenticating the
client, or is otherwise malformed.</t>
                </dd>
                <dt>"invalid_client":</dt>
                <dd>
                  <t>Client authentication failed (e.g., unknown client, no
client authentication included, or unsupported
authentication method).  The authorization server <bcp14>MAY</bcp14>
return an HTTP 401 (Unauthorized) status code to indicate
which HTTP authentication schemes are supported.  If the
client attempted to authenticate via the <tt>Authorization</tt>
request header field, the authorization server <bcp14>MUST</bcp14>
respond with an HTTP 401 (Unauthorized) status code and
include the <tt>WWW-Authenticate</tt> response header field
matching the authentication scheme used by the client.</t>
                </dd>
                <dt>"unauthorized_client":</dt>
                <dd>
                  <t>The authenticated client is not authorized to use this
endpoint.</t>
                </dd>
                <dt>"invalid_session":</dt>
                <dd>
                  <t>The provided <tt>auth_session</tt> is
invalid, expired, revoked, or is otherwise invalid.</t>
                </dd>
                <dt>"invalid_scope":</dt>
                <dd>
                  <t>The requested scope is invalid, unknown, malformed, or
exceeds the scope granted by the resource owner.</t>
                </dd>
                <dt>"insufficient_authorization":</dt>
                <dd>
                  <t>The presented authorization is insufficient, and the authorization
server is requesting the client take additional steps to
complete the authorization.</t>
                </dd>
                <dt>"redirect_to_web":</dt>
                <dd>
                  <t>The request is not able to be fulfilled with any further
direct interaction with the user. Instead, the client
should initiate a new authorization code flow so that the
user interacts with the authorization server in a web browser.
See <xref target="redirect-to-web"/> for details.</t>
                </dd>
              </dl>
              <t>Values for the <tt>error</tt> parameter <bcp14>MUST NOT</bcp14> include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              <t>The authorization server <bcp14>MAY</bcp14> extend these error codes with custom
messages based on the requirements of the authorization server.</t>
            </dd>
            <dt>"error_description":</dt>
            <dd>
              <t><bcp14>OPTIONAL</bcp14>.  Human-readable ASCII <xref target="USASCII"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter <bcp14>MUST NOT</bcp14> include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
            </dd>
            <dt>"error_uri":</dt>
            <dd>
              <t><bcp14>OPTIONAL</bcp14>.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter <bcp14>MUST</bcp14> conform to the
URI-reference syntax and thus <bcp14>MUST NOT</bcp14> include characters
outside the set %x21 / %x23-5B / %x5D-7E.</t>
            </dd>
            <dt>"auth_session":</dt>
            <dd>
              <t><bcp14>OPTIONAL</bcp14>.  The auth session allows the authorization server to
associate subsequent requests by this client with an ongoing
authorization request sequence. The client <bcp14>MUST</bcp14> include
the <tt>auth_session</tt> in follow-up requests to the authorization challenge
endpoint if it receives one along with the error response.</t>
            </dd>
            <dt>"request_uri":</dt>
            <dd>
              <t><bcp14>OPTIONAL</bcp14>.  A request URI as described by <xref target="RFC9126"/> Section 2.2.</t>
            </dd>
            <dt>"expires_in":</dt>
            <dd>
              <t><bcp14>OPTIONAL</bcp14>.  The lifetime of the <tt>request_uri</tt> in seconds, as
described by <xref target="RFC9126"/> Section 2.2.</t>
            </dd>
          </dl>
          <t>This specification requires the authorization server to define new
error codes that relate to the actions the client must take in order
to properly authenticate the user. These new error codes are specific
to the authorization server's implementation of this specification and are
intentionally left out of scope.</t>
          <t>The parameters are included in the content of the HTTP response
using the <tt>application/json</tt> media type as defined by <xref target="RFC7159"/>.  The
parameters are serialized into a JSON structure by adding each
parameter at the highest structure level.  Parameter names and string
values are included as JSON strings.  Numerical values are included
as JSON numbers.  The order of parameters does not matter and can
vary.</t>
          <t>The authorization server <bcp14>MAY</bcp14> define additional parameters in the response
depending on the implementation. The authorization server <bcp14>MAY</bcp14> also define
more specific content types for the error responses as long as the response
is JSON and conforms to <tt>application/&lt;AS-defined&gt;+json</tt>.</t>
          <section anchor="redirect-to-web">
            <name>Redirect to Web Error Response</name>
            <t>The authorization server may choose to interact directly with the user based on a risk
assesment, the introduction of a new authentication method not supported
in the application, or to handle an exception flow like account recovery.
To indicate this error to the client, the authorization server returns an
error response as defined above with the <tt>redirect_to_web</tt> error code.</t>
            <t>In this case, the client is expected to initiate a new OAuth
Authorization Code flow with PKCE according to <xref target="RFC6749"/> and <xref target="RFC7636"/>.</t>
            <t>If the client expects the frequency of this error response to be high,
the client <bcp14>MAY</bcp14> include a PKCE (<xref target="RFC7636"/>) <tt>code_challenge</tt> in the initial authorization
challenge request. This enables the authorization server to essentially treat
the authorization challenge request as a PAR <xref target="RFC9126"/> request, and
return the <tt>request_uri</tt> and <tt>expires_in</tt> as defined by <xref target="RFC9126"/> in the error response.
The client then uses the <tt>request_uri</tt> value to build an authorization request
as defined in <xref target="RFC9126"/> Section 4.</t>
          </section>
        </section>
      </section>
      <section anchor="intermediate-requests">
        <name>Intermediate Requests</name>
        <t>If the authorization server returns an <tt>insufficient_authorization</tt> error as described
above, this is an indication that there is further information the client
should request from the user, and continue to make requests to the authorization
server until the authorization request is fulfilled and an authorization code returned.</t>
        <t>These intermediate requests are out of scope of this specification, and are expected
to be defined by the authorization server. The format of these requests is not required
to conform to the format of the initial authorization challenge requests
(e.g. the request format may be <tt>application/json</tt> rather than <tt>application/x-www-form-urlencoded</tt>).</t>
        <t>These intermediate requests <bcp14>MAY</bcp14> also be sent to proprietary endpoints at the authorization server
rather than the Authorization Challenge Endpoint.</t>
        <section anchor="auth-session">
          <name>Auth Session</name>
          <t>The <tt>auth_session</tt> is a value that the authorization server issues in order to be able to associate subsequent requests from the same client. It is intended to be analagous to how a browser cookie associates multiple requests by the same browser to the authorization server.</t>
          <t>The <tt>auth_session</tt> value is completely opaque to the client, and as such the authorization server <bcp14>MUST</bcp14> adequately protect the value from inspection by the client, for example by using a random string or using a JWE if the authorization server is not maintaining state on the backend.</t>
          <t>If the client has an <tt>auth_session</tt>, the client <bcp14>MUST</bcp14> include it in future requests to the authorization challenge endpoint. The client <bcp14>MUST</bcp14> store the <tt>auth_session</tt> beyond the issuance of the authorization code to be able to use it in future requests.</t>
          <t>Every response defined by this specification may include a new <tt>auth_session</tt> value. Clients <bcp14>MUST NOT</bcp14> assume that <tt>auth_session</tt> values are static, and <bcp14>MUST</bcp14> be prepared to update the stored <tt>auth_session</tt> value if one is received in a response.</t>
          <t>To mitigate the risk of session hijacking, the 'auth_session' <bcp14>MUST</bcp14> be bound to the device, and the authorization server <bcp14>MUST</bcp14> reject an 'auth_session' if it is presented from a different device than the one it was bound to.</t>
          <t>See <xref target="auth-session-security"/> for additional security considerations.</t>
        </section>
      </section>
    </section>
    <section anchor="token-request">
      <name>Token Request</name>
      <t>The client makes a request to the token endpoint using the authorization code it obtained from the authorization challenge endpoint.</t>
      <t>This specification does not define any additional parameters beyond the token request parameters defined in  Section 4.1.3 of <xref target="RFC6749"/>. However, notably, the <tt>redirect_uri</tt> parameter will not be included in this request, because no <tt>redirect_uri</tt> parameter was included in the authorization request.</t>
      <section anchor="token-endpoint-successful-response">
        <name>Token Endpoint Successful Response</name>
        <t>This specification extends the OAuth 2.0 <xref target="RFC6749"/> token response
defined in Section 5.1 with the additional parameter <tt>auth_session</tt>, defined in <xref target="auth-session"/>.</t>
        <t>An example successful token response is below:</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",
  "auth_session": "uY29tL2F1dGhlbnRpY"
}
]]></artwork>
        <t>The response <bcp14>MAY</bcp14> include an <tt>auth_session</tt> parameter which the client is expected to include on any subsequent requests to the authorization challenge endpoint, as described in <xref target="auth-session"/>. The <tt>auth_session</tt> parameter <bcp14>MAY</bcp14> also be included even if the authorization code was obtained through a traditional OAuth authorization code flow rather than the flow defined by this specification.</t>
        <t>Including the <tt>auth_session</tt> parameter in the token response enables flows such as step-up authentication <xref target="RFC9470"/>, so that the authorization server can restore the context of a previous session and prompt only for the needed step-up factors. See <xref target="step-up-sms-example"/> for an example application.</t>
      </section>
      <section anchor="token-endpoint-error-response">
        <name>Token Endpoint Error Response</name>
        <t>Upon any request to the token endpoint, including a request with a valid refresh token,
the authorization server can respond with an authorization challenge instead of a successful access token response.</t>
        <t>An authorization challenge error response is a particular type of
error response as defined in Section 5.2 of OAuth 2.0 <xref target="RFC6749"/> where
the error code is set to the following value:</t>
        <dl>
          <dt>"error": "insufficient_authorization":</dt>
          <dd>
            <t>The presented authorization is insufficient, and the authorization
server is requesting the client take additional steps to
complete the authorization.</t>
          </dd>
        </dl>
        <t>Additionally, the response <bcp14>MAY</bcp14> contain an <tt>auth_session</tt> parameter which the client is expected to include on a subsequent request to the authorization challenge endpoint.</t>
        <dl>
          <dt>"auth_session":</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>.  The optional auth session value allows the authorization server to
associate subsequent requests by this client with an ongoing
authorization request sequence. The client <bcp14>MUST</bcp14> include
the <tt>auth_session</tt> in follow-up requests to the challenge
endpoint if it receives one along with the error response.</t>
          </dd>
        </dl>
        <t>For example:</t>
        <artwork><![CDATA[
HTTP/1.1 403 Forbidden
Content-Type: application/json
Cache-Control: no-store

{
  "error": "insufficient_authorization",
  "auth_session": "uY29tL2F1dGhlbnRpY"
}
]]></artwork>
      </section>
    </section>
    <section anchor="resource-server-error-response">
      <name>Resource Server Error Response</name>
      <t>Step-Up Authentication <xref target="RFC9470"/> defines new error code values that a resource server can use to tell the client to start a new authorization request including <tt>acr_values</tt> and <tt>max_age</tt> from <xref target="OpenID"/>. Upon receiving this error response, the client starts a new first-party authorization request at the authorization challenge endpoint, and includes the <tt>acr_values</tt>, <tt>max_age</tt> and <tt>scope</tt> that were returned in the error response.</t>
      <t>This specification does not define any new parameters for the resource server error response beyond those defined in <xref target="RFC9470"/> and <xref target="RFC6750"/>.</t>
    </section>
    <section anchor="authorization-server-metadata">
      <name>Authorization Server Metadata</name>
      <t>The following authorization server metadata parameters <xref target="RFC8414"/> are introduced to signal the server's capability and policy with respect to first-party applications.</t>
      <dl>
        <dt>"authorization_challenge_endpoint":</dt>
        <dd>
          <t>The URL of the authorization challenge endpoint at which a client can initiate
an authorization request and eventually obtain an authorization code.</t>
        </dd>
      </dl>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="first-party-applications">
        <name>First-Party Applications</name>
        <t>First-party applications are applications that are controlled by the same entity as the authorization server used by the application, and the user understands them both as the same entity.</t>
        <t>For first-party applications, it is important that the user recognizes the application and authorization server as belonging to the same brand. For example, a bank publishing their own mobile application.</t>
        <t>Because this specification enables a client application to interact directly with the end user, and the application handles sending any information collected from the user to the authorization server, it is expected to be used only for first-party applications when the authorization server also has a high degree of trust of the client.</t>
        <t>This specification is not prescriptive on how the Authorization Server establishes its trust in the first-partyness of the application. For mobile platforms, most support some mechanism for application attestation that can be used to identify the entity that created/signed/uploaded the app to the app store. App attestation can be combined with other mechanisms like Dynamic Client Registration <xref target="RFC7591"/> to enable strong client authentication in addition to client verification (first-partyness). The exact steps required are out of scope for this specification. Note that applications running inside a browser (e.g. Single Page Apps) context it is much more difficult to verify the first-partyness of the client. Please see <xref target="single-page-apps"/> for additional details.</t>
      </section>
      <section anchor="phishing">
        <name>Phishing</name>
        <t>There are two ways using this specification increases the risk of phishing.</t>
        <ol spacing="normal" type="1"><li>
            <t>Malicious application: With this specification, the client interacts directly with the end user, collecting information provided by the user and sending it to the authorization server. If an attacker impersonates the client and successfully tricks a user into using it, they may not realize they are giving their credentials to the malicious application.</t>
          </li>
          <li>
            <t>User education: In a traditional OAuth deployment using the redirect-based authorization code flow, the user will only ever enter their credentials at the authorization server, and it is straightforward to explain to avoid entering credentials in other "fake" websites. By introducing a new place the user is expected to enter their credentials using this specification, it is more complicated to teach users how to recognize other fake login prompts that might be attempting to steal their credentials.</t>
          </li>
        </ol>
        <t>Because of these risks, the authorization server <bcp14>MAY</bcp14> decide to require that the user go through a redirect-based flow at any stage of the process based on its own risk assessment.</t>
      </section>
      <section anchor="credential-attacks">
        <name>Credential Stuffing Attacks</name>
        <t>The authorization challenge endpoint is capable of directly receiving user credentials and returning authorization codes. This exposes a new vector to perform credential stuffing attacks, if additional measures are not taken to ensure the authenticity of the application.</t>
        <t>An authorization server may already have a combination of built-in or 3rd party security tools in place to monitor and reduce this risk in browser-based authentication flows. Implementors <bcp14>SHOULD</bcp14> consider similar security measures to reduce this risk in the authorization challenge endpoint. Additionally, the attestation APIs <bcp14>SHOULD</bcp14> be used when possible to assert a level of confidence to the authorization server that the request is originating from an application owned by the same party.</t>
      </section>
      <section anchor="client-authentication">
        <name>Client Authentication</name>
        <t>Typically, mobile and desktop applications are considered "public clients" in OAuth, since they cannot be shipped with a statically configured set of client credentials <xref target="RFC8252"/>. Because of this, client impersonation should be a concern of anyone deploying this pattern. Without client authentication, a malicious user or attacker can mimick the requests the application makes to the authorization server, pretending to be the legitimate client.</t>
        <t>Implementers <bcp14>SHOULD</bcp14> consider additional measures to limit the risk of client impersonation, such as using attestation APIs available from the operating system.</t>
      </section>
      <section anchor="sender-constrained-tokens">
        <name>Sender-Constrained Tokens</name>
        <t>Tokens issued in response to an authorization challenge request <bcp14>SHOULD</bcp14> be sender constrained to mitigate the risk of token theft and replay.</t>
        <t>Proof-of-Possession techniques constrain tokens by binding them to a cryptographic key. Whenever the token is presented, it <bcp14>MUST</bcp14> be accompanied by a proof that the client presenting the token also controls the cryptographic key bound to the token. If a proof-of-possession sender constrained token is presented without valid proof of possession of the cryptographic key, it <bcp14>MUST</bcp14> be rejected.</t>
        <section anchor="dpop-demonstrating-proof-of-possession">
          <name>DPoP: Demonstrating Proof-of-Possession</name>
          <t>DPoP (<xref target="RFC9449"/>) is an application-level mechanism for sender-constraining OAuth <xref target="RFC6749"/> access and refresh tokens. If DPoP is used to sender constrain tokens, the client <bcp14>SHOULD</bcp14> use DPoP for every token request to the Authorization Server and interaction with the Resource Server.</t>
          <t>DPoP includes an optional capability to bind the authorization code to the DPoP key to enable end-to-end binding of the entire authorization flow. Given the back-channel nature of this specification, there are far fewer opportunities for an attacker to access the authorization code and PKCE code verifier compared to the redirect-based Authorization Code Flow. In this specification, the Authorization Code is obtained via a back-channel request. Despite this, omitting Authorization Code binding leaves a gap in the end-to-end protection that DPoP provides, so DPoP Authorization Code binding <bcp14>SHOULD</bcp14> be used.</t>
          <t>The mechanism for Authorization Code binding with DPoP is similar as that defined for Pushed Authorization Requests (PARs) in Section 10.1 of <xref target="RFC9449"/>. In order to bind the Authorization Code with DPoP, the client <bcp14>MUST</bcp14> add the DPoP header to the Authorization Challenge Request. The authorization server <bcp14>MUST</bcp14> check the DPoP proof JWT that was included in the DPoP header as defined in Section 4.3 of <xref target="RFC9449"/>. The authorization server <bcp14>MUST</bcp14> ensure that the same key is used in all subsequent Authorization Challenge Requests, or in the eventual token request. The authorization server <bcp14>MUST</bcp14> reject subsequent Authorization Challenge Requests, or the eventual token request, unless a DPoP proof for the same key presented in the original Authorization Challenge Request is provided.</t>
          <t>The above mechanism simplifies the implementation of the client, as it can attach the DPoP header to all requests to the authorization server regardless of the type of request. This mechanism provides a stronger binding than using the <tt>dpop_jkt</tt> parameter, as the DPoP header contains a proof of possession of the private key.</t>
        </section>
        <section anchor="other-proof-of-possession-mechanisms">
          <name>Other Proof of Possession Mechanisms</name>
          <t>It may be possible to use other proof of possession mechanisms to sender constrain access and refresh tokens. Defining these mechanisms are out of scope for this specification.</t>
        </section>
      </section>
      <section anchor="auth-session-security">
        <name>Auth Session</name>
        <section anchor="auth-session-dpop-binding">
          <name>Auth Session DPoP Binding</name>
          <t>If the client and authorization server are using DPoP binding of access tokens and/or authorization codes, then the <tt>auth_session</tt> value <bcp14>SHOULD</bcp14> be protected as well. The authorization server <bcp14>SHOULD</bcp14> associate the <tt>auth_session</tt> value with the DPoP public key. This removes the need for the authorization server to include additional claims in the DPoP proof, while still benefitting from the assurance that the client presenting the proof has control over the DPoP key. To associate the <tt>auth_session</tt> value with the DPoP public key, the authorization server:</t>
          <ul spacing="normal">
            <li>
              <t><bcp14>MUST</bcp14> check that the same DPoP public key is being used when the client presents the DPoP proof.</t>
            </li>
            <li>
              <t><bcp14>MUST</bcp14> verify the DPoP proof to ensure the client controls the corresponding private key whenever the client includes the <tt>auth_session</tt> in an Authorization Challenge Request as described in <xref target="challenge-request"/>.</t>
            </li>
          </ul>
          <t>DPoP binding of the <tt>auth_session</tt> value ensures that the context referenced by the <tt>auth_session</tt> cannot be stolen and reused by another device.</t>
        </section>
        <section anchor="auth-session-lifetime">
          <name>Auth Session Lifetime</name>
          <t>This specification makes no requirements or assumptions on the lifetime of the <tt>auth_session</tt> value. The lifetime and expiration is at the discretion of the authorization server, and the authorization server may choose to invalidate the value for any reason such as scheduled expiration, security events, or revocation events.</t>
          <t>Clients <bcp14>MUST NOT</bcp14> make any assumptions or depend on any particular lifetime of the <tt>auth_session</tt> value.</t>
        </section>
      </section>
      <section anchor="multiple-applications">
        <name>Multiple Applications</name>
        <t>When multiple first-party applications are supported by the AS, then it is important to consider a number of additional risks. These risks fall into two main categories: Experience Risk and Technical Risk which are described below.</t>
        <section anchor="user-experience-risk">
          <name>User Experience Risk</name>
          <t>Any time a user is asked to provide the authentication credentials in user experiences that differ, it has the effect of increasing the likelihood that the user will fall prey to a phishing attack because they are used to entering credentials in different looking experiences. When multiple first-party applications are supported, the implementation <bcp14>MUST</bcp14> ensure the native experience is identical across all the first-party applications.</t>
          <t>Another experience risk is user confusion caused by different looking experiences and behaviors. This can increase the likelihood the user will not complete the authentication experience for the first-party application.</t>
        </section>
        <section anchor="technical-risk">
          <name>Technical Risk</name>
          <t>In addition to the experience risks, multiple implementations in first-party applications increases the risk of an incorrect implementation as well as increasing the attack surface as each implementation may expose its own weaknesses.</t>
        </section>
        <section anchor="mitigation">
          <name>Mitigation</name>
          <t>To address these risks, when multiple first-party applications must be supported, and other methods such as <xref target="OpenID.Native-SSO"/> are not applicable, it is <bcp14>RECOMMENDED</bcp14> that a client-side SDK be used to ensure the implementation is consistent across the different applications and to ensure the user experience is identical for all first-party apps.</t>
        </section>
      </section>
      <section anchor="single-page-apps">
        <name>Single Page Applications</name>
        <t>Single Page Applications (SPA) run in a scripting language inside the context of a browser instance. This environment poses several unique challenges compared to native applications, in particular:</t>
        <ul spacing="normal">
          <li>
            <t>Significant attack vectors due to the possibility of Cross-Site Scripting (XSS) attacks</t>
          </li>
          <li>
            <t>Fewer options to securely attest to the first-partyness of a browser based application</t>
          </li>
        </ul>
        <t>See <xref target="I-D.ietf-oauth-browser-based-apps"/> for a detailed discussion of the risks of XSS attacks in browsers.</t>
        <t>Additionally, the nature of a Single-Page App means the user is already in a browser context, so the user experience cost of doing a full page redirect or a popup window for the traditional OAuth Authorization Code Flow is much less than the cost of doing so in a native application. The complexity and risk of implementing this specification in a browser likely does not outweigh the user experience benefits that would be gained in that context.</t>
        <t>For these reasons, it is <bcp14>NOT RECOMMENDED</bcp14> to use this specification in browser-based applications.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="oauth-parameters-registration">
        <name>OAuth Parameters Registration</name>
        <t>IANA has (TBD) registered the following values in the IANA "OAuth Parameters" registry of <xref target="IANA.oauth-parameters"/> established by <xref target="RFC6749"/>.</t>
        <t><strong>Parameter name</strong>: <tt>auth_session</tt></t>
        <t><strong>Parameter usage location</strong>: token response</t>
        <t><strong>Change Controller</strong>: IETF</t>
        <t><strong>Specification Document</strong>: Section 5.4 of this specification</t>
      </section>
      <section anchor="oauth-server-metadata-registration">
        <name>OAuth Server Metadata Registration</name>
        <t>IANA has (TBD) registered the following values in the IANA "OAuth Authorization Server Metadata" registry of <xref target="IANA.oauth-parameters"/> established by <xref target="RFC8414"/>.</t>
        <t><strong>Metadata Name</strong>: <tt>authorization_challenge_endpoint</tt></t>
        <t><strong>Metadata Description</strong>: URL of the authorization server's authorization challenge endpoint.</t>
        <t><strong>Change Controller</strong>: IESG</t>
        <t><strong>Specification Document</strong>: Section 4.1 of [[ this specification ]]</t>
      </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="RFC7159">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="March" year="2014"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7159"/>
          <seriesInfo name="DOI" value="10.17487/RFC7159"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</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 Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </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="RFC7591">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Protocol</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Machulak" initials="M." surname="Machulak"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="July" year="2015"/>
            <abstract>
              <t>This specification defines mechanisms for dynamically registering OAuth 2.0 clients with authorization servers. Registration requests send a set of desired client metadata values to the authorization server. The resulting registration responses return a client identifier to use at the authorization server and the client metadata values registered for the client. The client can then use this registration information to communicate with the authorization server using the OAuth 2.0 protocol. This specification also defines a set of common client metadata fields and values for clients to use during registration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7591"/>
          <seriesInfo name="DOI" value="10.17487/RFC7591"/>
        </reference>
        <reference anchor="RFC7636">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author fullname="N. Sakimura" initials="N." role="editor" surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Agarwal" initials="N." surname="Agarwal"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack. This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8414">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC8628">
          <front>
            <title>OAuth 2.0 Device Authorization Grant</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="August" year="2019"/>
            <abstract>
              <t>The OAuth 2.0 device authorization grant is designed for Internet- connected devices that either lack a browser to perform a user-agent- based authorization or are input constrained to the extent that requiring the user to input text in order to authenticate during the authorization flow is impractical. It enables OAuth clients on such devices (like smart TVs, media consoles, digital picture frames, and printers) to obtain user authorization to access protected resources by using a user agent on a separate device.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8628"/>
          <seriesInfo name="DOI" value="10.17487/RFC8628"/>
        </reference>
        <reference anchor="RFC8707">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document specifies an extension to the OAuth 2.0 Authorization Framework defining request parameters that enable a client to explicitly signal to an authorization server about the identity of the protected resource(s) to which it is requesting access.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8707"/>
          <seriesInfo name="DOI" value="10.17487/RFC8707"/>
        </reference>
        <reference anchor="RFC9126">
          <front>
            <title>OAuth 2.0 Pushed Authorization Requests</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="D. Tonge" initials="D." surname="Tonge"/>
            <author fullname="F. Skokan" initials="F." surname="Skokan"/>
            <date month="September" year="2021"/>
            <abstract>
              <t>This document defines the pushed authorization request (PAR) endpoint, which allows clients to push the payload of an OAuth 2.0 authorization request to the authorization server via a direct request and provides them with a request URI that is used as reference to the data in a subsequent call to the authorization endpoint.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9126"/>
          <seriesInfo name="DOI" value="10.17487/RFC9126"/>
        </reference>
        <reference anchor="RFC9449">
          <front>
            <title>OAuth 2.0 Demonstrating Proof of Possession (DPoP)</title>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Waite" initials="D." surname="Waite"/>
            <date month="September" year="2023"/>
            <abstract>
              <t>This document describes a mechanism for sender-constraining OAuth 2.0 tokens via a proof-of-possession mechanism on the application level. This mechanism allows for the detection of replay attacks with access and refresh tokens.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9449"/>
          <seriesInfo name="DOI" value="10.17487/RFC9449"/>
        </reference>
        <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>
        <reference anchor="I-D.ietf-oauth-cross-device-security">
          <front>
            <title>Cross-Device Flows: Security Best Current Practice</title>
            <author fullname="Pieter Kasselman" initials="P." surname="Kasselman">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Daniel Fett" initials="D." surname="Fett">
              <organization>Authlete</organization>
            </author>
            <author fullname="Filip Skokan" initials="F." surname="Skokan">
              <organization>Okta</organization>
            </author>
            <date day="8" month="July" year="2024"/>
            <abstract>
              <t>   This document describes threats against cross-device flows along with
   practical mitigations, protocol selection guidance, and a summary of
   formal analysis results identified as relevant to the security of
   cross-device flows.  It serves as a security guide to system
   designers, architects, product managers, security specialists, fraud
   analysts and engineers implementing cross-device flows.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-cross-device-security-08"/>
        </reference>
        <reference anchor="OpenID.Native-SSO" target="https://openid.net/specs/openid-connect-native-sso-1_0.html">
          <front>
            <title>OpenID Connect Native SSO for Mobile Apps</title>
            <author initials="G." surname="Fletcher">
              <organization/>
            </author>
            <date year="2022" month="November"/>
          </front>
        </reference>
        <reference anchor="OpenID" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </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="IANA.JWT">
          <front>
            <title>*** BROKEN REFERENCE ***</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange, ANSI X3.4</title>
            <author initials="A. N. S." surname="Institute" fullname="American National Standards Institute">
              <organization/>
            </author>
            <date year="1986"/>
          </front>
        </reference>
        <reference anchor="SHS" target="http://dx.doi.org/10.6028/NIST.FIPS.180-4">
          <front>
            <title>"Secure Hash Standard (SHS)", FIPS PUB 180-4, DOI 10.6028/NIST.FIPS.180-4</title>
            <author initials="N. I. of S. and" surname="Technology" fullname="National Institute of Standards and Technology">
              <organization/>
            </author>
            <date year="2015" month="August"/>
          </front>
        </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="RFC6750">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources. Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key). To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC8252">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser. This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="212"/>
          <seriesInfo name="RFC" value="8252"/>
          <seriesInfo name="DOI" value="10.17487/RFC8252"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps">
          <front>
            <title>OAuth 2.0 for Browser-Based Applications</title>
            <author fullname="Aaron Parecki" initials="A." surname="Parecki">
              <organization>Okta</organization>
            </author>
            <author fullname="David Waite" initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Philippe De Ryck" initials="P." surname="De Ryck">
              <organization>Pragmatic Web Security</organization>
            </author>
            <date day="1" month="May" year="2024"/>
            <abstract>
              <t>   This specification details the threats, attack consequences, security
   considerations and best practices that must be taken into account
   when developing browser-based applications that use OAuth 2.0.

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-browser-based-apps.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-18"/>
        </reference>
      </references>
    </references>
    <?line 713?>

<section anchor="example-user-experiences">
      <name>Example User Experiences</name>
      <t>This section provides non-normative examples of how this specification may be used to support specific use cases.</t>
      <section anchor="passkey">
        <name>Passkey</name>
        <t>A user may log in with a passkey (without a password).</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client collects the username from the user.</t>
          </li>
          <li>
            <t>The Client sends an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>) including the username.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the username and returns a challenge</t>
          </li>
          <li>
            <t>The Client signs the challenge using the platform authenticator, which results in the user being prompted for verification with biometrics or a PIN.</t>
          </li>
          <li>
            <t>The Client sends the signed challenge, username, and credential ID to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>).</t>
          </li>
          <li>
            <t>The Authorization Server verifies the signed challenge and returns an Authorization Code.</t>
          </li>
          <li>
            <t>The Client requests an Access Token and Refresh Token by issuing a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues the requested tokens.</t>
          </li>
        </ol>
      </section>
      <section anchor="redirect-to-authorization-server">
        <name>Redirect to Authorization Server</name>
        <t>A user may be redirected to the Authorization Server to perfrom an account reset.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client collects username from the user.</t>
          </li>
          <li>
            <t>The Client sends an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>) including the username.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the username and determines that the account is locked and returns a Redirect error response.</t>
          </li>
          <li>
            <t>The Client parses the redirect message, opens a browser and redirects the user to the Authorization Server performing an OAuth 2.0 flow with PKCE.</t>
          </li>
          <li>
            <t>The user resets their account by performing a multi-step authentication flow with the Authorization Server.</t>
          </li>
          <li>
            <t>The Authorization Server issues an Authorization Code in a redirect back to the client, which then exchanges it for an access and refresh token.</t>
          </li>
        </ol>
      </section>
      <section anchor="passwordless-one-time-password-otp">
        <name>Passwordless One-Time Password (OTP)</name>
        <t>In a passwordless One-Time Password (OTP) scheme, the user is in possession of a one-time password generator. This generator may be a hardware device, or implemented as an app on a mobile phone. The user provides a user identifier and one-time password, which is verified by the Authorization Server before it issues an Authorization Code, which can be exchanged for an Access and Refresh Token.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client collects username and OTP from user.</t>
          </li>
          <li>
            <t>The Client sends an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>) including the username and OTP.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the username and OTP and returns an Authorization Code.</t>
          </li>
          <li>
            <t>The Client requests an Access Token and Refresh Token by issuing a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues the requested tokens.</t>
          </li>
        </ol>
      </section>
      <section anchor="e-mail-confirmation-code">
        <name>E-Mail Confirmation Code</name>
        <t>A user may be required to provide an e-mail confirmation code as part of an authentication ceremony to prove they control an e-mail address. The user provides an e-mail address and is then required to enter a verification code sent to the e-mail address. If the correct verification code is returned to the Authorization Server, it issues Access and Refresh Tokens.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client collects an e-mail address from the user.</t>
          </li>
          <li>
            <t>The Client sends the e-mail address in an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>).</t>
          </li>
          <li>
            <t>The Authorization Server sends a verification code to the e-mail address and returns an Error Response (<xref target="challenge-error-response"/>) including <tt>"error": "insufficient_authorization"</tt>, <tt>"auth_session"</tt> and a custom property indicating that an e-mail verification code must be entered.</t>
          </li>
          <li>
            <t>The Client presents a user experience guiding the user to copy the e-mail verification code to the Client. Once the e-mail verification code is entered, the Client sends an Authorization Challenge Request to the Authorization Challenge Endpoint, including the e-mail verification code as well as the <tt>auth_session</tt> parameter returned in the previous Error Response.</t>
          </li>
          <li>
            <t>The Authorization Server uses the <tt>auth_session</tt> to maintain the session and verifies the e-mail verification code before issuing an Authorization Code to the Client.</t>
          </li>
          <li>
            <t>The Client sends the Authorization Code in a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues the Access Token and Refresh Token.</t>
          </li>
        </ol>
        <t>An alternative version of this verification involves the user clicking a link in an email rather than manually entering a verification code. This is typically done for email verification flows rather than inline in a login flow. The protocol-level details remain the same for the alternative flow despite the different user experience. All steps except step 4 above remain the same, but the client presents an alternative user experience for step 4 described below:</t>
        <ul spacing="normal">
          <li>
            <t>The Client presents a message to the user instructing them to click the link sent to their email address. The user clicks the link in the email, which contains the verification code in the URL. The URL launches the app providing the verification code to the Client. The Client sends the verification code and <tt>auth_session</tt> to the Authorization Challenge Endpoint.</t>
          </li>
        </ul>
      </section>
      <section anchor="mobile-confirmation-code">
        <name>Mobile Confirmation Code</name>
        <t>A user may be required to provide a confirmation code as part of an authentication ceremony to prove they control a mobile phone number. The user provides a phone number and is then required to enter a confirmation code sent to the phone. If the correct confirmation code is returned to the Authorization Server, it issues Access and Refresh Tokens.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client collects a mobile phone number from the user.</t>
          </li>
          <li>
            <t>The Client sends the phone number in an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>).</t>
          </li>
          <li>
            <t>The Authorization Server sends a confirmation code to the phone number and returns an Error Response (<xref target="challenge-error-response"/>) including <tt>"error": "insufficient_authorization"</tt>, <tt>"auth_session"</tt> and a custom property indicating that a confirmation code must be entered.</t>
          </li>
          <li>
            <t>The Client presents a user experience guiding the user to enter the confirmation code. Once the code is entered, the Client sends an Authorization Challenge Request to the Authorization Challenge Endpoint, including the confirmation code as well as the <tt>auth_session</tt> parameter returned in the previous Error Response.</t>
          </li>
          <li>
            <t>The Authorization Server uses the <tt>auth_session</tt> to maintain the session context and verifies the code before issuing an Authorization Code to the Client.</t>
          </li>
          <li>
            <t>The Client sends the Authorization Code in a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues the Access Token and Refresh Token.</t>
          </li>
        </ol>
      </section>
      <section anchor="re-authenticating-to-an-app-a-week-later-using-otp">
        <name>Re-authenticating to an app a week later using OTP</name>
        <t>A client may be in possession of an Access and Refresh Token as the result of a previous succesful user authentication. The user returns to the app a week later and accesses the app. The Client presents the Access Token, but receives an error indicating the Access Token is no longer valid. The Client presents a Refresh Token to the Authorization Server to obtain a new Access Token. If the Authorization Server requires user interaction for reasons based on its own policies, it rejects the Refresh Token and the Client re-starts the user authentication flow to obtain new Access and Refresh Tokens.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client has a short-lived access token and long-lived refresh token following a previous completion of an Authorization Grant Flow which included user authentication.</t>
          </li>
          <li>
            <t>A week later, the user launches the app and tries to access a protected resource at the Resource Server.</t>
          </li>
          <li>
            <t>The Resource Server responds with an error code indicating an invalid access token since it has expired.</t>
          </li>
          <li>
            <t>The Client presents the refresh token to the Authorization Server to obtain a new access token (section 6 <xref target="RFC6749"/>)</t>
          </li>
          <li>
            <t>The Authorization Server responds with an error code indicating that an OTP from the user is required, as well as an <tt>auth_session</tt>.</t>
          </li>
          <li>
            <t>The Client prompts the user to enter an OTP.</t>
          </li>
          <li>
            <t>The Client sends the OTP and <tt>auth_session</tt> in an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>).</t>
          </li>
          <li>
            <t>The Authorization Server verifies the <tt>auth_session</tt> and OTP, and returns an Authorization Code.</t>
          </li>
          <li>
            <t>The Client sends the Authorization Code in a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues the requested tokens.</t>
          </li>
          <li>
            <t>The Client presents the new Access Token to the Resource Server in order to access the protected resource.</t>
          </li>
        </ol>
      </section>
      <section anchor="step-up-sms-example">
        <name>Step-up Authentication using Confirmation SMS</name>
        <t>A Client previously obtained an Access and Refresh Token after the user authenticated with an OTP. When the user attempts to access a protected resource, the Resource Server determines that it needs an additional level of authentication and triggers a step-up authentication, indicating the desired level of authentication using <tt>acr_values</tt> and <tt>max_age</tt> as defined in the Step-up Authentication specification. The Client initiates an authorization request with the Authorization Server indicating the <tt>acr_values</tt> and <tt>max_age</tt> parameters. The Authorization Server responds with error messages promptng for additional authentication until the <tt>acr_values</tt> and <tt>max_age</tt> values are satisfied before issuing fresh Access and Refresh Tokens.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client has a short-lived access token and long-lived refresh token following the completion of an Authorization Code Grant Flow which included user authentication.</t>
          </li>
          <li>
            <t>When the Client presents the Access token to the Resource Server, the Resource Server determines that the <tt>acr</tt> claim in the Access Token is insufficient given the resource the user wants to access and responds with an <tt>insufficient_user_authentication</tt> error code, along with the desired <tt>acr_values</tt> and desired <tt>max_age</tt>.</t>
          </li>
          <li>
            <t>The Client sends an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>) including the <tt>auth_session</tt>, <tt>acr_values</tt> and <tt>max_age</tt> parameters.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the <tt>auth_session</tt> and determines which authentication methods must be satisfied based on the <tt>acr_values</tt>, and responds with an Error Response (<xref target="challenge-error-response"/>) including <tt>"error": "insufficient_authorization"</tt> and a custom property indicating that an OTP must be entered.</t>
          </li>
          <li>
            <t>The Client prompts the user for an OTP, which the user obtains and enters.</t>
          </li>
          <li>
            <t>The Client sends an Authorization Challenge Request to the Authorization Challenge Endpoint including the <tt>auth_session</tt> and OTP.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the OTP and returns an Authorization Code.</t>
          </li>
          <li>
            <t>The Client sends the Authorization Code in a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues an Access Token with the updated <tt>acr</tt> value along with the Refresh Token.</t>
          </li>
          <li>
            <t>The Client presents the Access Token to the Resources Server, which verifies that the <tt>acr</tt> value meets its requirements before granting access to the protected resource.</t>
          </li>
        </ol>
      </section>
      <section anchor="registration">
        <name>Registration</name>
        <t>This example describes how to use the mechanisms defined in this draft to create a complete user registration flow starting with an email address. In this example, it is the Authorization Server's policy to allow these challenges to be sent to email and phone number that were previously unrecognized, and creating the user account on the fly.</t>
        <ol spacing="normal" type="1"><li>
            <t>The Client collects a username from the user.</t>
          </li>
          <li>
            <t>The Client sends an Authorization Challenge Request (<xref target="challenge-request"/>) to the Authorization Challenge Endpoint (<xref target="authorization-challenge-endpoint"/>) including the username.</t>
          </li>
          <li>
            <t>The Authorization Server returns an Error Response (<xref target="challenge-error-response"/>) including <tt>"error": "insufficient_authorization"</tt>, <tt>"auth_session"</tt>, and a custom property indicating that an e-mail address must be collected.</t>
          </li>
          <li>
            <t>The Client collects an e-mail address from the user.</t>
          </li>
          <li>
            <t>The Client sends the e-mail address as part of a second Authorization Challenge Request to the Authorization Challenge Endpoint, along with the <tt>auth_session</tt> parameter.</t>
          </li>
          <li>
            <t>The Authorization Server sends a verification code to the e-mail address and returns an Error Response including <tt>"error": "insufficient_authorization"</tt>, <tt>"auth_session"</tt> and a custom property indicating that an e-mail verification code must be entered.</t>
          </li>
          <li>
            <t>The Client presents a user experience guiding the user to copy the e-mail verification code to the Client. Once the e-mail verification code is entered, the Client sends an Authorization Challenge Request to the Authorization Challenge Endpoint, including the e-mail verification code as well as the <tt>auth_session</tt> parameter returned in the previous Error Response.</t>
          </li>
          <li>
            <t>The Authorization Server uses the <tt>auth_session</tt> to maintain the session context, and verifies the e-mail verification code. It determines that it also needs a phone number for account recovery purposes and returns an Error Response including <tt>"error": "insufficient_authorization"</tt>, <tt>"auth_session"</tt> and a custom property indicating that a phone number must be collected.</t>
          </li>
          <li>
            <t>The Client collects a mobile phone number from the user.</t>
          </li>
          <li>
            <t>The Client sends the phone number in an Authorization Challenge Request to the Authorization Challenge Endpoint, along with the <tt>auth_session</tt>.</t>
          </li>
          <li>
            <t>The Authorization Server uses the <tt>auth_session</tt> parameter to link the previous requests. It sends a confirmation code to the phone number and returns an Error Response including <tt>"error": "insufficient_authorization"</tt>, <tt>"auth_session"</tt> and a custom property indicating that a SMS confirmation code must be entered.</t>
          </li>
          <li>
            <t>The Client presents a user experience guiding the user to enter the SMS confirmation code. Once the SMS verification code is entered, the Client sends an Authorization Challenge Request to the Authorization Challenge Endpoint, including the confirmation code as well as the <tt>auth_session</tt> parameter returned in the previous Error Response.</t>
          </li>
          <li>
            <t>The Authorization Server uses the <tt>auth_session</tt> to maintain the session context, and verifies the SMS verification code before issuing an Authorization Code to the Client.</t>
          </li>
          <li>
            <t>The Client sends the Authorization Code in a Token Request (<xref target="token-request"/>) to the Token Endpoint.</t>
          </li>
          <li>
            <t>The Authorization Server verifies the Authorization Code and issues the requested tokens.</t>
          </li>
        </ol>
      </section>
    </section>
    <section anchor="example-implementations">
      <name>Example Implementations</name>
      <t>In order to successfully implement this specification, the Authorization Server will need to define its own specific requirements for what values clients are expected to send in the Authorization Challenge Request (<xref target="challenge-request"/>), as well as its own specific error codes in the Authorization Challenge Response (<xref target="challenge-response"/>).</t>
      <t>Below is an example of parameters required for a complete implementation that enables the user to log in with a username and OTP.</t>
      <section anchor="authorization-challenge-request-parameters">
        <name>Authorization Challenge Request Parameters</name>
        <t>In addition to the request parameters defined in <xref target="challenge-request"/>, the authorization server defines the additional parameters below.</t>
        <dl>
          <dt>"username":</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> for the initial Authorization Challenge Request.</t>
          </dd>
          <dt>"otp":</dt>
          <dd>
            <t>The OTP collected from the user. <bcp14>REQUIRED</bcp14> when re-trying an Authorization Challenge Request in response to the <tt>otp_required</tt> error defined below.</t>
          </dd>
        </dl>
      </section>
      <section anchor="authorization-challenge-response-parameters">
        <name>Authorization Challenge Response Parameters</name>
        <t>In addition to the response parameters defined in <xref target="challenge-response"/>, the authorization server defines the additional value for the <tt>error</tt> response below.</t>
        <dl>
          <dt>"otp_required":</dt>
          <dd>
            <t>The client should collect an OTP from the user and send the OTP in
a second request to the Authorization Challenge Endpoint. The HTTP
response code to use with this error value is <tt>401 Unauthorized</tt>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="example-sequence">
        <name>Example Sequence</name>
        <t>The client prompts the user to enter their username, and sends the username in an initial Authorization Challenge Request.</t>
        <artwork><![CDATA[
POST /authorize-challenge HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

username=alice
&scope=photos
&client_id=bb16c14c73415
]]></artwork>
        <t>The Authorization Server sends an error response indicating that an OTP is required.</t>
        <artwork><![CDATA[
HTTP/1.1 401 Unauthorized
Content-Type: application/json
Cache-Control: no-store

{
  "error": "otp_required",
  "auth_session": "ce6772f5e07bc8361572f"
}
]]></artwork>
        <t>The client prompts the user for an OTP, and sends a new Authorization Challenge Request.</t>
        <artwork><![CDATA[
POST /authorize-challenge HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

auth_session=ce6772f5e07bc8361572f
&otp=555121
]]></artwork>
        <t>The Authorization Server validates the <tt>auth_session</tt> to find the expected user, then validates the OTP for that user, and responds with an authorization code.</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "authorization_code": "uY29tL2F1dGhlbnRpY"
}
]]></artwork>
        <t>The client sends the authorization code to the token endpoint.</t>
        <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code
&client_id=bb16c14c73415
&code=uY29tL2F1dGhlbnRpY
]]></artwork>
        <t>The Authorization Server responds with an access token and refresh token.</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "token_type": "Bearer",
  "expires_in": 3600,
  "access_token": "d41c0692f1187fd9b326c63d",
  "refresh_token": "e090366ac1c448b8aed84cbc07"
}
]]></artwork>
      </section>
    </section>
    <section anchor="design-goals">
      <name>Design Goals</name>
      <t>This specification defines a new authorization flow the client can use to obtain an authorization grant. There are two primary reasons for designing the specification this way.</t>
      <t>This enables existing OAuth implementations to make fewer modifications to existing code by not needing to extend the token endpoint with new logic. Instead, the new logic can be encapsulated in an entirely new endpoint, the output of which is an authorization code which can be redeemed for an access token at the existing token endpoint.</t>
      <t>This also mirrors more closely the existing architecture of the redirect-based authorization code flow. In the authorization code flow, the client first initiates a request by redirecting a browser to the authorization endpoint, at which point the authorization server takes over with its own custom logic to authenticate the user in whatever way appropriate, possibly including interacting with other endpoints for the actual user authentication process. Afterwards, the authorization server redirects the user back to the client application with an authorization code in the query string. This specification mirrors the existing approach by having the client first make a POST request to the Authorization Challenge Endpoint, at which point the authorization server provides its own custom logic to authenticate the user, eventually returning an authorization code.</t>
      <t>An alternative design would be to define new custom grant types for the different authentication factors such as WebAuthn, OTP, etc. The drawback to this design is that conceptually, these authentication methods do not map to an OAuth grant. In other words, the OAuth authorization grant captures the user's intent to authorize access to some data, and that authorization is represented by an authorization code, not by different methods of authenticating the user.</t>
      <t>Another alternative option would be to have the Authorization Challenge Endpoint return an access token upon successful authentication of the user. This was deliberately not chosen, as this adds a new endpoint that tokens would be returned from. In most deployments, the Token Endpoint is the only endpoint that actually issues tokens, and includes all the implmentation logic around token binding, rate limiting, etc. Instead of defining a new endpoint that issues tokens which would have to have similar logic and protections, instead the new endpoint only issues authorization codes, which can be exchanged for tokens at the existing Token Endpoint just like in the redirect-based Authorization Code flow.</t>
      <t>These design decisions should enable authorization server implementations to isolate and encapsulate the changes needed to support this specification.</t>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>-02</t>
      <ul spacing="normal">
        <li>
          <t>Fixed typos</t>
        </li>
        <li>
          <t>Clarified resource server error response section</t>
        </li>
        <li>
          <t>Added additional context to the Design Goals section</t>
        </li>
        <li>
          <t>Clarified that further communication between client and AS can happen at proprietary endpoints</t>
        </li>
        <li>
          <t>Changed <tt>invalid_grant</tt> to <tt>invalid_session</tt></t>
        </li>
      </ul>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Added clarification on use of authorization code binding when using DPoP with the authorization challenge endpoint.</t>
        </li>
        <li>
          <t>Removed ash claim to simplify DPoP binding with auth_session value.</t>
        </li>
        <li>
          <t>Fixed how "redirect to web" mechanism works with PKCE.</t>
        </li>
        <li>
          <t>Added "intermediate requests" section to clarify these requests are out of scope, moved "auth session" description to that section.</t>
        </li>
      </ul>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Renamed <tt>authorization_required</tt> to <tt>insufficient_authorization</tt></t>
        </li>
        <li>
          <t>Defined <tt>insufficient_authorization</tt> on the Authorization Challenge Endpoint</t>
        </li>
        <li>
          <t>Renamed <tt>device_session</tt> to <tt>auth_session</tt></t>
        </li>
        <li>
          <t>Added explicit method to indicate the client should restart the flow in a browser</t>
        </li>
        <li>
          <t>Described how to use DPoP in conjunction with this spec</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank the attendees of the OAuth Security Workshop 2023 session in which this was discussed, as well as the following individuals who contributed ideas, feedback, and wording that shaped and formed the final specification:</t>
      <t>Alejo Fernandez, Brian Campbell, Dick Hardt, Dmitry Telegin, Jeff Corrigan, John Bradley, Justin Richer, Mike Jones, Orie Steele, Tim Cappalli, Tobias Looker, Yaron Sheffer.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
