<?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.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-14" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-14"/>
    <author initials="D." surname="Hardt" fullname="Dick Hardt">
      <organization>Hellō</organization>
      <address>
        <email>dick.hardt@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
      <organization>SPRIND</organization>
      <address>
        <email>torsten@lodderstedt.net</email>
      </address>
    </author>
    <date year="2025" month="October" day="20"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 181?>

<t>The OAuth 2.1 authorization framework enables an
application to obtain limited access to a protected resource, either on
behalf of a resource owner by orchestrating an approval interaction
between the resource owner and an authorization service, or by allowing the
application to obtain access on its own behalf.  This
specification replaces and obsoletes the OAuth 2.0 Authorization
Framework described in RFC 6749 and the Bearer Token Usage in RFC 6750.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    OAuth Working Group mailing list (oauth@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/oauth-wg/oauth-v2-1"/>.</t>
    </note>
  </front>
  <middle>
    <?line 191?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>OAuth introduces an authorization layer to the client-server authentication model
by separating the role of the client from that of the resource
owner. In OAuth, the client requests access to resources controlled
by the resource owner and hosted by the resource server.
Instead of using the resource owner's credentials to access protected
resources, the client obtains an access token - a credential representing
a specific set of access attributes such as scope and lifetime. Access
tokens are issued to clients by an authorization server with the approval
of the resource owner. The client uses the access token to access the
protected resources hosted by the resource server.</t>
      <t>In the older, more limited client-server authentication model, the client
requests an access-restricted resource (protected resource) on the
server by authenticating to the server using the resource owner's
credentials.  In order to provide applications access to
restricted resources, the resource owner shares their credentials with
the application.  This creates several problems and limitations:</t>
      <ul spacing="normal">
        <li>
          <t>Applications are required to store the resource
owner's credentials for future use, typically a password in
clear-text.</t>
        </li>
        <li>
          <t>Servers are required to support password authentication, despite
the security weaknesses inherent in passwords.</t>
        </li>
        <li>
          <t>Applications gain overly broad access to the resource
owner's protected resources, leaving resource owners without any
ability to restrict duration or access to a limited subset of
resources.</t>
        </li>
        <li>
          <t>Resource owners often reuse passwords with other unrelated
services, despite best security practices. This password reuse means
a vulnerability or exposure in one service may have security
implications in completely unrelated services.</t>
        </li>
        <li>
          <t>Resource owners cannot revoke access to an individual application
without revoking access to all third parties, and must do so by
changing their password.</t>
        </li>
        <li>
          <t>Compromise of any application results in compromise of
the end-user's password and all of the data protected by that
password.</t>
        </li>
      </ul>
      <t>An example where OAuth is used is where an end user (resource owner) grants a financial management
service (client) access to their sensitive transaction history stored at
a banking service (resource server), without sharing their username and
password with the financial management service. Instead, they authenticate
directly with their financial institution's server (authorization server),
which issues the financial management service delegation-specific credentials
(access token).</t>
      <t>This separation of concerns also provides the ability to use more advanced
user authentication methods such as multi-factor authentication and even
passwordless authentication, without any modification to the applications.
With all user authentication logic handled by the authorization server,
applications don't need to be concerned with the specifics of implementing
any particular authentication mechanism. This provides the ability for the
authorization server to manage the user authentication policies and
even change them in the future without coordinating the changes with applications.</t>
      <t>The authorization layer can also simplify how a resource server determines
if a request is authorized. Traditionally, after authenticating the client,
each resource server would evaluate policies to compute if the client is authorized
on each API call. In a distributed system, the policies need to be synchronized
to all the resource servers, or the resource server must call a central policy
server to process each request. In OAuth, evaluation of the policies is performed
only when a new access token is created by the authorization server. If the
authorized access is represented in the access token, the resource server no longer
needs to evaluate the policies, and only needs to validate the access token.
This simplification applies when the application is acting on behalf of a resource
owner, or on behalf of itself.</t>
      <t>OAuth is an authorization protocol, not an authentication protocol, as OAuth does not define the necessary components to achieve user authentication.
An authentication protocol is necessary if the goal is to authenticate users. An example is OpenID Connect <xref target="OpenID"/>, which builds on OAuth to provide the security
characteristics and necessary components required of an authentication protocol.</t>
      <t>The
access token represents the authorization granted to the client. It is a common
practice for the client to present the access token to a proprietary API which
returns a user identifier for the resource owner, and then using the result of
the API as a proxy for authenticating the user. This practice is not part of
the OAuth standard or security considerations, and may not have been considered
by the resource owner. Implementors should carefully consult the documentation
of the resource server before adopting this practice.</t>
      <t>This specification is designed for use with HTTP <xref target="RFC9110"/>.  The
use of OAuth over any protocol other than HTTP is out of scope.</t>
      <t>Since the publication of the OAuth 2.0 Authorization Framework <xref target="RFC6749"/>
in October 2012, it has been updated by OAuth 2.0 for Native Apps <xref target="RFC8252"/>,
OAuth Security Best Current Practice <xref target="RFC9700"/>,
and OAuth 2.0 for Browser-Based Apps <xref target="I-D.ietf-oauth-browser-based-apps"/>.
The OAuth 2.0 Authorization Framework: Bearer Token Usage <xref target="RFC6750"/>
has also been updated with <xref target="RFC9700"/>. This
Standards Track specification consolidates the information in all of these
documents and removes features that have been found to be insecure
in <xref target="RFC9700"/>.</t>
      <section anchor="roles">
        <name>Roles</name>
        <t>OAuth defines four roles:</t>
        <dl>
          <dt>"resource owner":</dt>
          <dd>
            <t>An entity capable of granting access to a protected resource.
When the resource owner is a person, it is referred to as an
end user. This is sometimes abbreviated as "RO".</t>
          </dd>
          <dt>"resource server":</dt>
          <dd>
            <t>The server hosting the protected resources, capable of accepting
and responding to protected resource requests using access tokens.
The resource server is often accessible via an API.
This is sometimes abbreviated as "RS".</t>
          </dd>
          <dt>"client":</dt>
          <dd>
            <t>An application making protected resource requests on behalf of the
resource owner and with its authorization.  The term "client" does
not imply any particular implementation characteristics (e.g.,
whether the application executes on a server, a desktop, or other
devices).</t>
          </dd>
          <dt>"authorization server":</dt>
          <dd>
            <t>The server issuing access tokens to the client after successfully
authenticating the resource owner and obtaining authorization.
This is sometimes abbreviated as "AS".</t>
          </dd>
        </dl>
        <t>Most of this specification defines the interaction between the client
and the authorization server, as well as between the client and resource server.</t>
        <t>The interaction between the authorization server and resource server
is beyond the scope of this specification, however several extensions have
been defined to provide an option for interoperability between resource
servers and authorization servers.  The authorization server
may be the same server as the resource server or a separate entity.
A single authorization server may issue access tokens accepted by
multiple resource servers.</t>
        <t>The interaction between the resource owner and authorization server
(e.g. how the end user authenticates themselves at the authorization server)
is also out of scope of this specification, with some exceptions, such as
security considerations around prompting the end user for consent.</t>
        <t>When the resource owner is the end user, the user will interact with
the client. When the client is a web-based application, the user will
interact with the client through a user agent (as described in <xref section="3.5" sectionFormat="of" target="RFC9110"/>).
When the client is a native application, the user will interact with
the client directly through the operating system. See <xref target="client-types"/>
for further details.</t>
      </section>
      <section anchor="protocol-flow">
        <name>Protocol Flow</name>
        <figure anchor="fig-protocol-flow">
          <name>Abstract Protocol Flow</name>
          <artwork><![CDATA[
     +--------+                               +---------------+
     |        |--(1)- Authorization Request ->|   Resource    |
     |        |                               |     Owner     |
     |        |<-(2)-- Authorization Grant ---|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(3)-- Authorization Grant -->| Authorization |
     | Client |                               |     Server    |
     |        |<-(4)----- Access Token -------|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(5)----- Access Token ------>|    Resource   |
     |        |                               |     Server    |
     |        |<-(6)--- Protected Resource ---|               |
     +--------+                               +---------------+
]]></artwork>
        </figure>
        <t>The abstract OAuth 2.1 flow illustrated in <xref target="fig-protocol-flow"/> describes the
interaction between the four roles and includes the following steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>The client requests authorization from the resource owner.  The
authorization request can be made directly to the resource owner
(as shown), or preferably indirectly via the authorization
server as an intermediary.</t>
          </li>
          <li>
            <t>The client receives an authorization grant, which is a
credential representing the resource owner's authorization,
expressed using one of the authorization grant types defined in this
specification or using an extension grant type.  The
authorization grant type depends on the method used by the
client to request authorization and the types supported by the
authorization server.</t>
          </li>
          <li>
            <t>The client requests an access token by authenticating with the
authorization server and presenting the authorization grant.</t>
          </li>
          <li>
            <t>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token.</t>
          </li>
          <li>
            <t>The client requests the protected resource from the resource
server and authenticates by presenting the access token.</t>
          </li>
          <li>
            <t>The resource server validates the access token, and if valid,
serves the request.</t>
          </li>
        </ol>
        <t>The preferred method for the client to obtain an authorization grant
from the resource owner (depicted in steps (1) and (2)) is to use the
authorization server as an intermediary, which is illustrated in
<xref target="fig-authorization-code-flow"/> in <xref target="authorization-code-grant"/>.</t>
      </section>
      <section anchor="authorization-grant">
        <name>Authorization Grant</name>
        <t>An authorization grant represents the resource
owner's authorization (to access its protected resources) used by the
client to obtain an access token.  This specification defines three
grant types -- authorization code, refresh token,
and client credentials -- as well as an extensibility
mechanism for defining additional types.</t>
        <section anchor="authorization-code">
          <name>Authorization Code</name>
          <t>An authorization code is a temporary credential used to obtain an access token.
Instead of the client
requesting authorization directly from the resource owner, the client
directs the resource owner to an authorization server (via its
user agent) which in turn directs the
resource owner back to the client with the authorization code.
The client can then exchange the authorization code for an access token.</t>
          <t>Before directing the resource owner back to the client with the
authorization code, the authorization server authenticates the
resource owner, and may request the resource owner's consent or otherwise
inform them of the client's request. Because the resource owner
only authenticates with the authorization server, the resource
owner's credentials are never shared with the client, and the client
does not need to have knowledge of any additional authentication steps
such as multi-factor authentication or delegated accounts.</t>
          <t>The authorization code provides a few important security benefits,
such as the ability to authenticate the client, as well as the
transmission of the access token directly to the client without
passing it through the resource owner's user agent and potentially
exposing it to others, including the resource owner.</t>
        </section>
        <section anchor="refresh-token">
          <name>Refresh Token</name>
          <t>Refresh tokens are credentials used to obtain access tokens.  Refresh
tokens may be issued to the client by the authorization server and are
used to obtain a new access token when the current access token
becomes invalid or expires, or to obtain additional access tokens
with identical or narrower scope (access tokens may have a shorter
lifetime and fewer privileges than authorized by the resource
owner).  Issuing a refresh token is optional at the discretion of the
authorization server, and may be issued based on properties of the client,
properties of the request, policies within the authorization server, or
any other criteria.  If the authorization server issues a refresh
token, it is included when issuing an access token (i.e., step (2) in
<xref target="fig-refresh-token-flow"/>). The lifetime of the refresh token is also
at the discretion of the authorization server.</t>
          <t>A refresh token is a string representing the authorization granted to
the client by the resource owner.  The string is considered opaque to
the client. The refresh token may be an identifier used to retrieve the
authorization information or may encode this information into the
string itself. Unlike access tokens, refresh tokens are
intended for use only with authorization servers and are never sent
to resource servers.</t>
          <figure anchor="fig-refresh-token-flow">
            <name>Refreshing an Expired Access Token</name>
            <artwork><![CDATA[
+--------+                                           +---------------+
|        |--(1)------- Authorization Grant --------->|               |
|        |                                           |               |
|        |<-(2)----------- Access Token -------------|               |
|        |               & Refresh Token             |               |
|        |                                           |               |
|        |                            +----------+   |               |
|        |--(3)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(4)- Protected Resource --| Resource |   | Authorization |
| Client |                            |  Server  |   |     Server    |
|        |--(5)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(6)- Invalid Token Error -|          |   |               |
|        |                            +----------+   |               |
|        |                                           |               |
|        |--(7)----------- Refresh Token ----------->|               |
|        |                                           |               |
|        |<-(8)----------- Access Token -------------|               |
+--------+           & Optional Refresh Token        +---------------+
]]></artwork>
          </figure>
          <t>The flow illustrated in <xref target="fig-refresh-token-flow"/> includes the following steps:</t>
          <ol spacing="normal" type="1"><li>
              <t>The client requests an access token by authenticating with the
authorization server and presenting an authorization grant.</t>
            </li>
            <li>
              <t>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token
and optionally a refresh token.</t>
            </li>
            <li>
              <t>The client makes a protected resource request to the resource
server by presenting the access token.</t>
            </li>
            <li>
              <t>The resource server validates the access token, and if valid,
serves the request.</t>
            </li>
            <li>
              <t>Steps (3) and (4) repeat until the access token expires.  If the
client knows the access token expired, it skips to step (7);
otherwise, it makes another protected resource request.</t>
            </li>
            <li>
              <t>Since the access token is invalid, the resource server returns
an invalid token error.</t>
            </li>
            <li>
              <t>The client requests a new access token by presenting the refresh token
and providing client authentication if it has been issued credentials. The
client authentication requirements are based on the client type
and on the authorization server policies.</t>
            </li>
            <li>
              <t>The authorization server authenticates the client and validates
the refresh token, and if valid, issues a new access token (and,
optionally, a new refresh token).</t>
            </li>
          </ol>
          <t>Note that there is no need to communicate the lifetime of the refresh
token to the client, because the client can't do anything different with
the knowledge of the lifetime. Additionally, the authorization server
might choose to use dynamic lifetimes (e.g. the refresh token expiry
is extended as long as the refresh token is used at least once every 7 days),
or the authorization server might revoke the refresh token before
its scheduled expiration date for any reason, such as if the user
revokes the application's access. This means the client already has
to handle the case of a refresh token expiring at an arbitrary time.</t>
          <t>Regardless of why or when the refresh token expires, the client
has only one path to obtain new tokens, which is to start a new
OAuth flow from the beginning. For that reason, there is no property
defined to communicate the expiration of a refresh token to the client.</t>
        </section>
        <section anchor="client-credentials">
          <name>Client Credentials</name>
          <t>The client credentials or other forms of client authentication
(e.g., a private key used to sign a JWT, as described in <xref target="RFC7523"/>
and its update <xref target="I-D.ietf-oauth-rfc7523bis"/>)
can be used as an authorization grant when the authorization scope is
limited to the protected resources under the control of the client,
or to protected resources previously arranged with the authorization
server.  Client credentials are used when the client is requesting
access to protected resources based on an authorization previously
arranged with the authorization server.</t>
        </section>
      </section>
      <section anchor="access-tokens">
        <name>Access Token</name>
        <t>Access tokens are credentials used to access protected resources.  An
access token is a string representing an authorization issued to the
client.</t>
        <t>The string is considered opaque to the client, even if it has
a structure. The client MUST NOT expect to be able to parse the access
token value. The authorization server is not required to use a
consistent access token encoding or format other than what is
expected by the resource server.</t>
        <t>The access granted by the resource owner to the client is represented by
the Access Token created by the authorization server. Access Tokens are
short lived to reduce the blast radius of a leaked Access Token. The expiration
of the Access Token is set by the authorization server.</t>
        <t>Depending on the authorization server implementation,
the token string may be used by the resource server to retrieve the authorization information,
or the token may self-contain the authorization information in a verifiable
manner (i.e., a token string consisting of a signed data payload). One example
of a token retrieval mechanism is Token Introspection <xref target="RFC7662"/>, in which the
RS calls an endpoint on the AS to validate the token presented by the client.
One example of a structured token format is JWT Profile for Access Tokens <xref target="RFC9068"/>,
a method of encoding and signing access token data as a JSON Web Token <xref target="RFC7519"/>.</t>
        <t>Additional authentication credentials, which are beyond
the scope of this specification, may be required in order for the
client to use an access token. This is typically referred to as a sender-constrained
access token, such as DPoP <xref target="RFC9449"/> and
Mutual TLS Certificate-Bound Access Tokens <xref target="RFC8705"/>.</t>
        <t>The access token provides an abstraction layer, replacing different
authorization constructs (e.g., username and password) with a single
token understood by the resource server.  This abstraction enables
issuing access tokens more restrictive than the authorization grant
used to obtain them, as well as removing the resource server's need
to understand a wide range of authentication methods.</t>
        <t>Access tokens can have different formats, structures, and methods of
utilization (e.g., cryptographic properties) based on the resource
server security requirements.  Access token attributes and the
methods used to access protected resources may be extended beyond
what is described in this specification.</t>
        <t>Access tokens (as well as any confidential access token
attributes) MUST be kept confidential in transit and storage, and
only shared among the authorization server, the resource servers the
access token is valid for, and the client to which the access token is
issued.</t>
        <t>The authorization server MUST ensure that access tokens cannot be
generated, modified, or guessed to produce valid access tokens by
unauthorized parties.</t>
        <section anchor="access-token-scope">
          <name>Access Token Scope</name>
          <t>Access tokens are intended to be issued to clients with less privileges
than the user granting the access has. This is known as a limited "scope"
access token. The authorization server and resource server can use this
scope mechanism to limit what types of resources or level of access a particular client
can have.</t>
          <t>For example, a client may only need "read" access to a user's
resources, but doesn't need to update resources, so the client can request
the read-only scope defined by the authorization server, and obtain
an access token that cannot be used to update resources. This requires
coordination between the authorization server, resource server, and client. The
authorization server provides the client the ability to request specific
scopes, and associates those scopes with the access token issued to the client.
The resource server is then responsible for enforcing scopes when presented
with a limited-scope access token.</t>
          <t>OAuth does not define any scope values, instead scopes are defined by the
authorization server or by extensions or profiles of OAuth. One such extension
that defines scopes is <xref target="OpenID"/>, which defines a set of scopes that provide
granular access to a user's profile information. It is recommended to avoid
defining custom scopes that conflict with scopes from known extensions.</t>
          <t>To request a limited-scope access token, the client uses the <tt>scope</tt>
request parameter at the authorization or token endpoints, depending on
the grant type used. In turn, the authorization server uses the <tt>scope</tt>
response parameter to inform the client of the scope of the access token issued.</t>
          <t>The value of the scope parameter is expressed as a list of space-
delimited, case-sensitive strings.  The strings are defined by the
authorization server.  If the value contains multiple space-delimited
strings, their order does not matter, and each string adds an
additional access range to the requested scope.</t>
          <sourcecode type="abnf"><![CDATA[
    scope       = scope-token *( SP scope-token )
    scope-token = 1*( %x21 / %x23-5B / %x5D-7E )
]]></sourcecode>
          <t>The authorization server MAY fully or partially ignore the scope
requested by the client, based on the authorization server policy or
the resource owner's instructions.  If the issued access token scope
is different from the one requested by the client, the authorization
server MUST include the <tt>scope</tt> response parameter in the token response
(<xref target="token-response"/>) to inform the client of the actual scope granted.</t>
          <t>If the client omits the scope parameter when requesting
authorization, the authorization server MUST either process the
request using a pre-defined default value or fail the request
indicating an invalid scope.  The authorization server SHOULD
document its scope requirements and default value (if defined).</t>
        </section>
        <section anchor="bearer-tokens">
          <name>Bearer Tokens</name>
          <t>A Bearer Token is a security token with the property that any party
in possession of the token (a "bearer") can use the token in any way
that any other party in possession of it can.  Using a Bearer Token
does not require a bearer to prove possession of cryptographic key material
(proof-of-possession).</t>
          <t>Bearer Tokens may be enhanced with proof-of-possession specifications such
as DPoP <xref target="RFC9449"/> and mTLS <xref target="RFC8705"/> to provide proof-of-possession characteristics.</t>
          <t>To protect against access token disclosure, the
communication interaction between the client and the resource server
MUST utilize confidentiality and integrity protection as described in
<xref target="communication-security"/>.</t>
          <t>There is no requirement on the particular structure or format of a bearer token. If a bearer token is a reference to authorization information, such references MUST be infeasible for an attacker to guess, such as using a sufficiently long cryptographically random string. If a bearer token uses an encoding mechanism to contain the authorization information in the token itself, the access token MUST use integrity protection sufficient to prevent the token from being modified. One example of an encoding and signing mechanism for access tokens is described in JSON Web Token Profile for Access Tokens <xref target="RFC9068"/>.</t>
        </section>
        <section anchor="sender-constrained-tokens">
          <name>Sender-Constrained Access Tokens</name>
          <t>A sender-constrained access token binds the use of an
access token to a specific sender.  This sender is obliged to
demonstrate knowledge of a certain secret as prerequisite for the
acceptance of that access token at the recipient (e.g., a resource server).</t>
          <t>Authorization and resource servers SHOULD use mechanisms for
sender-constraining access tokens, such as OAuth Demonstration of Proof of Possession (DPoP) <xref target="RFC9449"/>
or Mutual TLS for OAuth 2.0 <xref target="RFC8705"/>.
See <xref section="4.10.1" sectionFormat="of" target="RFC9700"/> to prevent misuse of stolen and leaked access tokens.</t>
          <t>It is RECOMMENDED to use end-to-end TLS between the client and the
resource server. If TLS traffic needs to be terminated at an intermediary,
refer to <xref section="4.13" sectionFormat="of" target="RFC9700"/> for further security advice.</t>
        </section>
      </section>
      <section anchor="communication-security">
        <name>Communication security</name>
        <t>Implementations MUST use a mechanism to provide communication
authentication, integrity and confidentiality such as
Transport-Layer Security <xref target="RFC8446"/>,
to protect the exchange of clear-text credentials and tokens
either in the content or in header fields
from eavesdropping which enables replay
(eg. see <xref target="client-secret"/>, <xref target="authorization_codes"/> and <xref target="token-endpoint"/>), and <xref target="bearer-tokens"/>).</t>
        <t>All the OAuth protocol URLs (URLs exposed by the AS, RS and Client) MUST use the <tt>https</tt> scheme
except for loopback interface redirect URIs,
which MAY use the <tt>http</tt> scheme.
When using <tt>https</tt>, TLS certificates MUST be checked
according to <xref section="4.3.4" sectionFormat="of" target="RFC9110"/>.
At the time of this writing,
TLS version 1.3 <xref target="RFC8446"/> is the most recent version.</t>
        <t>Implementations MAY also support additional transport-layer security
mechanisms that meet their security requirements.</t>
        <t>The identification of the TLS versions and algorithms
is outside the scope of this specification.
Refer to <xref target="BCP195"/> for up to date recommendations on
transport layer security, and to the relevant specifications
for certificate validation and other security considerations.</t>
      </section>
      <section anchor="http-redirections">
        <name>HTTP Redirections</name>
        <t>This specification makes extensive use of HTTP redirections, in which
the client or the authorization server directs the resource owner's
user agent to another destination.  While the examples in this
specification show the use of the HTTP 302 status code, any other
method available via the user agent to accomplish this redirection,
with the exception of HTTP 307, is allowed and is considered to be an
implementation detail. See <xref target="redirect_307"/> for details.</t>
      </section>
      <section anchor="interoperability">
        <name>Interoperability</name>
        <t>OAuth 2.1 provides a rich authorization framework with well-defined
security properties.</t>
        <t>This specification leaves a few required components partially or fully
undefined (e.g., client registration, authorization server capabilities,
endpoint discovery).  Some of these behaviors are defined in optional
extensions which implementations can choose to use, such as:</t>
        <ul spacing="normal">
          <li>
            <t><xref target="RFC8414"/>: Authorization Server Metadata, defining an endpoint clients can use to look up the information needed to interact with a particular OAuth server</t>
          </li>
          <li>
            <t><xref target="RFC7591"/>: Dynamic Client Registration, providing a mechanism for programmatically registering clients with an authorization server</t>
          </li>
          <li>
            <t><xref target="RFC7592"/>: Dynamic Client Management, providing a mechanism for updating dynamically registered client information</t>
          </li>
          <li>
            <t><xref target="RFC7662"/>: Token Introspection, defining a mechanism for resource servers to obtain information about access tokens</t>
          </li>
        </ul>
        <t>Please refer to <xref target="extensions"/> for a list of current known extensions at
the time of this publication.</t>
      </section>
      <section anchor="compatibility-with-oauth-20">
        <name>Compatibility with OAuth 2.0</name>
        <t>OAuth 2.1 is compatible with OAuth 2.0 with the extensions and restrictions
from known best current practices applied. Specifically, features not specified
in OAuth 2.0 core, such as PKCE, are required in OAuth 2.1. Additionally,
some features available in OAuth 2.0, such as the Implicit or Resource Owner Credentials
grant types, are not specified in OAuth 2.1. Furthermore, some behaviors
allowed in OAuth 2.0 are restricted in OAuth 2.1, such as the strict string
matching of redirect URIs required by OAuth 2.1.</t>
        <t>See <xref target="oauth-2-0-differences"/> for more details on the differences from OAuth 2.0.</t>
      </section>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" 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.
<?line -6?>
        </t>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF)
notation of <xref target="RFC5234"/>.  Additionally, the rule URI-reference is
included from "Uniform Resource Identifier (URI): Generic Syntax"
<xref target="RFC3986"/>.</t>
        <t>Certain security-related terms are to be understood in the sense
defined in <xref target="RFC4949"/>.  These terms include, but are not limited to,
"attack", "authentication", "authorization", "certificate",
"confidentiality", "credential", "encryption", "identity", "sign",
"signature", "trust", "validate", and "verify".</t>
        <t>The term "content" is to be interpreted as described in <xref section="6.4" sectionFormat="of" target="RFC9110"/>.</t>
        <t>The term "user agent" is to be interpreted as described in <xref section="3.5" sectionFormat="of" target="RFC9110"/>.</t>
        <t>Unless otherwise noted, all the protocol parameter names and values
are case sensitive.</t>
      </section>
    </section>
    <section anchor="client-registration">
      <name>Client Registration</name>
      <t>Before initiating the protocol, the client must have established an identifier (<xref target="client-identifier"/>) at the
authorization server. The means through which the client identifier is established
with the authorization server are beyond the scope of this
specification, but typically involve the client developer manually registering
the client at the authorization server's website (after creating an account and agreeing
to the service's Terms of Service), or by using Dynamic Client Registration <xref target="RFC7591"/>.
Extensions may also define other programmatic methods of establishing client registration.</t>
      <t>Client registration does not require a direct interaction between the
client and the authorization server.  When supported by the
authorization server, registration can rely on other means for
establishing trust and obtaining the required client properties
(e.g., redirect URI, client type).  For example, registration can
be accomplished using a self-issued or third-party-issued assertion,
or by the authorization server performing client discovery using a
trusted channel.</t>
      <t>Client registration MUST include:</t>
      <ul spacing="normal">
        <li>
          <t>the client type as described in <xref target="client-types"/>,</t>
        </li>
        <li>
          <t>client details needed by the grant type in use,
such as redirect URIs as described in <xref target="redirection-endpoint"/>, and</t>
        </li>
        <li>
          <t>any other information required by the authorization server
(e.g., application name, website, description, logo image, the
acceptance of legal terms).</t>
        </li>
      </ul>
      <t>Dynamic Client Registration <xref target="RFC7591"/> defines a common general data model
for clients that may be used even with manual client registration.</t>
      <section anchor="client-types">
        <name>Client Types</name>
        <t>OAuth 2.1 defines two client types based on their ability to authenticate securely
with the authorization server.</t>
        <dl>
          <dt>"confidential":</dt>
          <dd>
            <t>Clients that have credentials with the AS are designated as "confidential clients"</t>
          </dd>
          <dt>"public":</dt>
          <dd>
            <t>Clients without credentials are called "public clients"</t>
          </dd>
        </dl>
        <t>Any clients with credentials MUST take precautions to prevent leakage and abuse of their credentials.</t>
        <t>Client authentication allows an Authorization Server to ensure it is interacting with a certain client
(identified by its <tt>client_id</tt>) in an OAuth flow. The Authorization Server might make policy decisions
about things such as whether to prompt the user for consent on every authorization or only the first
based on the confidence that the Authorization Server is actually communicating with the legitimate client.</t>
        <t>Whether and how an Authorization Server validates the identity of a client or the party
providing/operating this client is out of scope of this specification.
Authorization servers SHOULD consider the level of confidence in a client's identity
when deciding whether they allow a client access to more sensitive resources and operations
such as the Client Credentials grant type and how often to prompt the user for consent.</t>
        <t>There is no requirement that an Authorization Server supports a particular client type.</t>
        <t>A single <tt>client_id</tt> SHOULD NOT be treated as more than one type of client.</t>
        <t>This specification has been designed around the following client profiles:</t>
        <dl>
          <dt>"web application":</dt>
          <dd>
            <t>A web application is a client running on a web
server. Resource owners access the client via an HTML user
interface rendered in a user agent on the device used by the
resource owner.  The client credentials as well as any access
tokens issued to the client are stored on the web server and are
not exposed to or accessible by the resource owner.</t>
          </dd>
          <dt>"browser-based application":</dt>
          <dd>
            <t>A browser-based application is a client in which the
client code is downloaded from a web server and executes within a
user agent (e.g., web browser) on the device used by the resource
owner.  Protocol data and credentials are easily accessible (and
often visible) to the resource owner. If such applications wish to use
client credentials, it is recommended to utilize the
backend for frontend pattern. Since such applications
reside within the user agent, they can make seamless use of the
user agent capabilities when requesting authorization.</t>
          </dd>
          <dt>"native application":</dt>
          <dd>
            <t>A native application is a client installed and executed on
the device used by the resource owner.  Protocol data and
credentials are accessible to the resource owner.  It is assumed
that any client authentication credentials included in the
application can be extracted. Dynamically
issued access tokens and refresh tokens can
receive an acceptable level of protection.  On some platforms, these credentials
are protected from other applications residing on the same
device. If such applications wish to use
client credentials, it is recommended to utilize the
backend for frontend pattern, or issue the credentials at runtime
using Dynamic Client Registration <xref target="RFC7591"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="client-identifier">
        <name>Client Identifier</name>
        <t>Every client is identified in the context of an authorization server
by a client identifier -- a unique string representing the registration
information provided by the client. While the Authorization Server typically
issues the client identifier itself, it may also serve clients whose client identifier
was created by a party other than the Authorization Server. The client identifier is not a
secret; it is exposed to the resource owner and MUST NOT be used
alone for client authentication.  The client identifier is unique in the
context of an authorization server.</t>
        <t>The client identifier is an opaque string whose size is left undefined by this
specification.  The client should avoid making assumptions about the
identifier size.  The authorization server SHOULD document the size
of any identifier it issues.</t>
        <t>If the authorization server supports clients with client identifiers issued by
parties other than the authorization server, the authorization server SHOULD
take precautions to avoid clients impersonating resource owners as described
in <xref target="client-impersonating-resource-owner"/>.</t>
      </section>
      <section anchor="redirection-endpoint">
        <name>Client Redirection Endpoint</name>
        <t>The client redirection endpoint (also referred to as "redirect endpoint")
is the URI of the client that the authorization server redirects the user
agent back to after completing its interaction with the resource owner.</t>
        <t>The authorization server redirects the user agent to one of the
client's redirection endpoints previously established with the
authorization server during the client registration process.</t>
        <t>The redirect URI MUST be an absolute URI as defined by
<xref section="4.3" sectionFormat="of" target="RFC3986"/>.  The redirect URI MAY include an
query string component (<xref target="query-string-serialization"/>), which MUST be retained when adding
additional query parameters. The redirect URI MUST NOT include a
fragment component.</t>
        <section anchor="registration-requirements">
          <name>Registration Requirements</name>
          <t>Authorization servers MUST require clients to register their complete
redirect URI (including the path component). Authorization servers
MUST reject authorization requests that specify a redirect URI that
doesn't exactly match one that was registered, with an exception for
loopback redirects, where an exact match is required except for the
port URI component, see <xref target="authorization-request"/> for details.</t>
          <t>The authorization server MAY allow the client to register multiple
redirect URIs.</t>
          <t>Registration may happen out of band, such as a manual step of configuring
the client information at the authorization server, or may happen at
runtime, such as in the initial POST in Pushed Authorization Requests <xref target="RFC9126"/>.</t>
          <t>For private-use URI scheme-based redirect URIs, authorization servers
SHOULD enforce the requirement in <xref target="private-use-uri-scheme"/> that clients use
schemes that are reverse domain name based.  At a minimum, any
private-use URI scheme that doesn't contain a period character (<tt>.</tt>)
SHOULD be rejected.</t>
          <t>In addition to the collision-resistant properties,
this can help to prove ownership in the event of a dispute where two apps
claim the same private-use URI scheme (where one app is acting
maliciously).  For example, if two apps claimed <tt>com.example.app</tt>,
the owner of <tt>example.com</tt> could petition the app store operator to
remove the counterfeit app.  Such a petition is harder to prove if a
generic URI scheme was used.</t>
          <t>Clients MUST NOT expose URLs that forward the user's browser to
arbitrary URIs obtained from a query parameter ("open redirector"), as
described in <xref target="open-redirectors"/>. Open redirectors can enable
exfiltration of authorization codes and access tokens.</t>
          <t>The client MAY use the <tt>state</tt> request parameter to achieve per-request
customization if needed rather than varying the redirect URI per request.</t>
          <t>Without requiring registration of redirect URIs, attackers can
use the authorization endpoint as an open redirector as
described in <xref target="open-redirectors"/>.</t>
        </section>
        <section anchor="multiple-redirect-uris">
          <name>Multiple Redirect URIs</name>
          <t>If multiple redirect URIs have been registered to a client, the client MUST
include a redirect URI with the authorization request using the
<tt>redirect_uri</tt> request parameter (<xref target="authorization-request"/>).
If only a single redirect URI has been registered to a client,
the <tt>redirect_uri</tt> request parameter is optional.</t>
        </section>
        <section anchor="preventing-csrf-attacks">
          <name>Preventing CSRF Attacks</name>
          <t>Clients MUST prevent Cross-Site Request Forgery (CSRF) attacks. In this
context, CSRF refers to requests to the redirection endpoint that do
not originate at the authorization server, but a malicious third party
(see <xref section="4.4.1.8" sectionFormat="of" target="RFC6819"/> for details). Clients that have
ensured that the authorization server supports the <tt>code_challenge</tt> parameter MAY
rely on the CSRF protection provided by that mechanism. In OpenID Connect flows,
validating the <tt>nonce</tt> parameter provides CSRF protection. Otherwise, one-time
use CSRF tokens carried in the <tt>state</tt> parameter that are securely
bound to the user agent MUST be used for CSRF protection (see
<xref target="csrf_countermeasures"/>).</t>
        </section>
        <section anchor="preventing-mix-up-attacks">
          <name>Preventing Mix-Up Attacks</name>
          <t>When an OAuth client can only interact with one authorization server, a mix-up defense is not required. In scenarios where an OAuth client interacts with two or more authorization servers, however, clients MUST prevent mix-up attacks.
In order to prevent mix-up attacks, clients MUST only process redirect responses of the issuer they sent the respective request to and from the same user agent this authorization request was initiated with.</t>
          <t>See <xref target="mix-up"/> for a detailed description of two different defenses against mix-up attacks.</t>
        </section>
        <section anchor="invalid-endpoint">
          <name>Invalid Endpoint</name>
          <t>If an authorization request fails validation due to a missing,
invalid, or mismatching redirect URI, the authorization server
SHOULD inform the resource owner of the error and MUST NOT
automatically redirect the user agent to the invalid redirect URI.</t>
        </section>
        <section anchor="endpoint-content">
          <name>Endpoint Content</name>
          <t>The redirection request to the client's endpoint typically results in
an HTML document response, processed by the user agent.  If the HTML
response is served directly as the result of the redirection request,
any script included in the HTML document will execute with full
access to the redirect URI and the artifacts (e.g., authorization code)
it contains. Additionally, the request URL containing the authorization code
may be sent in the HTTP Referer header to any embedded images, stylesheets
and other elements loaded in the page.</t>
          <t>The client SHOULD NOT include any third-party scripts (e.g., third-
party analytics, social plug-ins, ad networks) in the redirect URI
endpoint response.  Instead, it SHOULD extract the artifacts from
the URI and redirect the user agent again to another endpoint without
exposing the artifacts (in the URI or elsewhere).  If third-party
scripts are included, the client MUST ensure that its own scripts
(used to extract and remove the credentials from the URI) will
execute first.</t>
        </section>
      </section>
      <section anchor="client-authentication">
        <name>Client Authentication</name>
        <t>The authorization server MUST only rely on client authentication if the
process of issuance/registration and distribution of the underlying
credentials ensures their confidentiality.</t>
        <t>For confidential clients, the authorization server MAY accept any
form of client authentication meeting its security requirements
(e.g., client secret, public/private key pair).</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705"/> or using signed JWTs
("Private Key JWT") in accordance with <xref target="RFC7521"/>, <xref target="RFC7523"/>,
and their update <xref target="I-D.ietf-oauth-rfc7523bis"/>
(defined in <xref target="OpenID"/> as the client authentication method <tt>private_key_jwt</tt>).
When such methods for client authentication are used, authorization
servers do not need to store sensitive symmetric keys, making these
methods more robust against a number of attacks.</t>
        <t>When client authentication is not possible, the authorization server
SHOULD employ other means to validate the client's identity -- for
example, by requiring the registration of the client redirect URI
or enlisting the resource owner to confirm identity.  A valid
redirect URI is not sufficient to verify the client's identity
when asking for resource owner authorization but can be used to
prevent delivering credentials to a counterfeit client after
obtaining resource owner authorization.</t>
        <t>The client MUST NOT use more than one authentication method in each
request to prevent a conflict of which authentication mechanism is
authoritative for the request.</t>
        <t>The authorization server MUST consider the security implications of
interacting with unauthenticated clients and take measures to limit
the potential exposure of tokens issued to such clients,
(e.g., limiting the lifetime of refresh tokens).</t>
        <t>The privileges an authorization server associates with a certain
client identity MUST depend on the assessment of the overall process
for client identification and client credential lifecycle management.
See <xref target="security-client-authentication"/> for additional details.</t>
        <section anchor="client-secret">
          <name>Client Secret</name>
          <t>To support confidential clients in possession of a client secret,
the authorization server MUST support the client including the
client credentials in the request body content using the following
parameters:</t>
          <dl>
            <dt>"client_id":</dt>
            <dd>
              <t>REQUIRED.  The client identifier issued to the client during
the registration process described by <xref target="client-identifier"/>.</t>
            </dd>
            <dt>"client_secret":</dt>
            <dd>
              <t>REQUIRED.  The client secret.</t>
            </dd>
          </dl>
          <t>The parameters can only be transmitted in the request content and MUST NOT
be included in the request URI.</t>
          <t>This is also known as <tt>client_secret_post</tt> as defined in <xref section="2" sectionFormat="of" target="RFC7591"/>.</t>
          <t>For example, a request to refresh an access token (<xref target="refreshing-an-access-token"/>) using
the content parameters (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
&client_id=s6BhdRkqt3&client_secret=7Fjfp0ZBr1KtDRbnfVdmIw
]]></artwork>
          <t>The authorization server MAY support the HTTP Basic
authentication scheme for authenticating clients that were issued a
client secret.</t>
          <t>When using the HTTP Basic authentication scheme as defined in <xref section="11" sectionFormat="of" target="RFC9110"/>
to authenticate with the authorization server, the client identifier is encoded using the
<tt>application/x-www-form-urlencoded</tt> encoding algorithm per
<xref target="application-x-www-form-urlencoded"/>, and the encoded value is used as the username; the client
secret is encoded using the same algorithm and used as the
password.</t>
          <t>This is also known as <tt>client_secret_basic</tt> as defined in <xref section="2" sectionFormat="of" target="RFC7591"/>.</t>
          <t>For example (with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
Authorization: Basic czZCaGRSa3F0Mzo3RmpmcDBaQnIxS3REUmJuZlZkbUl3
]]></artwork>
          <t>Note: This method of initially form-encoding the client identifier and secret,
and then using the encoded values as the HTTP Basic authentication username
and password, has led to many interoperability problems in the past. Some
implementations have missed the encoding step, or decided to only encode
certain characters, or ignored the encoding requirement when validating the
credentials, leading to clients having to special-case how they present the
credentials to individual authorization servers. Including the credentials
in the request body content avoids the encoding issues and leads to more
interoperable implementations.</t>
          <t>Since the client secret authentication method involves a password, the
authorization server MUST protect any endpoint utilizing it against
brute force attacks.</t>
        </section>
        <section anchor="other-authentication-methods">
          <name>Other Authentication Methods</name>
          <t>The authorization server MAY support any suitable authentication
scheme matching its security requirements.  When using other
authentication methods, the authorization server MUST define a
mapping between the client identifier (registration record) and
authentication scheme.</t>
          <t>Some additional authentication methods such as mTLS <xref target="RFC8705"/>
and Private Key JWT (<xref target="RFC7523"/>, <xref target="I-D.ietf-oauth-rfc7523bis"/>)
are defined in the
"<eref target="https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#token-endpoint-auth-method">OAuth Token Endpoint Authentication Methods</eref>" registry,
and may be useful as generic client authentication methods beyond
the specific use of protecting the token endpoint.</t>
        </section>
      </section>
      <section anchor="unregistered-clients">
        <name>Unregistered Clients</name>
        <t>This specification does not require that clients be registered with
the authorization server.
However, the use of unregistered clients is beyond the scope of this
specification and requires additional security analysis and review of
its interoperability impact.</t>
      </section>
    </section>
    <section anchor="protocol-endpoints">
      <name>Protocol Endpoints</name>
      <t>The authorization process utilizes two authorization server endpoints
(HTTP resources):</t>
      <ul spacing="normal">
        <li>
          <t>Authorization endpoint - used by the client to obtain
authorization from the resource owner via user agent redirection.</t>
        </li>
        <li>
          <t>Token endpoint - used by the client to exchange an authorization
grant for an access token, typically with client authentication.</t>
        </li>
      </ul>
      <t>As well as one client endpoint:</t>
      <ul spacing="normal">
        <li>
          <t>Redirection endpoint - used by the authorization server to return
responses containing authorization credentials to the client via
the resource owner user agent.</t>
        </li>
      </ul>
      <t>Not every authorization grant type utilizes both endpoints.
Extension grant types MAY define additional endpoints as needed.</t>
      <section anchor="authorization-endpoint">
        <name>Authorization Endpoint</name>
        <t>The authorization endpoint is used to interact with the resource
owner and obtain an authorization grant.  The authorization server
MUST first authenticate the resource owner.  The way in
which the authorization server authenticates the resource owner
(e.g., username and password login, passkey, federated login, or by using an established session)
is beyond the scope of this specification.</t>
        <t>The means through which the client obtains the URL of the
authorization endpoint are beyond the scope of this specification,
but the URL is typically provided in the service documentation,
or in the authorization server's metadata document <xref target="RFC8414"/>.</t>
        <t>The authorization endpoint URL MUST NOT include a fragment component,
and MAY include a query string component <xref target="query-string-serialization"/>,
which MUST be retained when adding additional query parameters.</t>
        <t>The authorization server MUST support the use of the HTTP <tt>GET</tt>
method <xref section="9.3.1" sectionFormat="of" target="RFC9110"/> for the authorization endpoint and MAY support
the <tt>POST</tt> method (<xref section="9.3.3" sectionFormat="of" target="RFC9110"/>) as well.</t>
        <t>The authorization server MUST ignore unrecognized request parameters sent to the authorization endpoint.</t>
        <t>Request and response parameters
defined by this specification MUST NOT be included more than once.
Parameters sent without a value MUST be treated as if they were
omitted from the request.</t>
        <t>An authorization server that redirects a request potentially containing
user credentials MUST avoid forwarding these user credentials accidentally
(see <xref target="redirect_307"/> for details).</t>
        <t>Cross-Origin Resource Sharing <xref target="WHATWG.CORS"/> MUST NOT be
supported at the Authorization Endpoint as the client does not access this
endpoint directly, instead the client redirects the user agent to it.</t>
      </section>
      <section anchor="token-endpoint">
        <name>Token Endpoint</name>
        <t>The token endpoint is used by the client to obtain an access token using
a grant such as those described in <xref target="obtaining-authorization"/> and
<xref target="refreshing-an-access-token"/>.</t>
        <t>The means through which the client obtains the URL of the token
endpoint are beyond the scope of this specification, but the URL
is typically provided in the service documentation and configured during
development of the client, or provided in the authorization server's metadata
document <xref target="RFC8414"/> and fetched programmatically at runtime.</t>
        <t>The token endpoint URL MUST NOT include a fragment component,
and MAY include a query string component <xref target="query-string-serialization"/>.</t>
        <t>The client MUST use the HTTP <tt>POST</tt> method when making requests to the token endpoint.</t>
        <t>The authorization server MUST ignore unrecognized request parameters sent to the token endpoint.</t>
        <t>Parameters sent without a value MUST be treated as if they were
omitted from the request. Request and response parameters
defined by this specification MUST NOT be included more than once.</t>
        <t>Authorization servers that wish to support browser-based applications
(for example, applications running exclusively in client-side JavaScript without
access to a supporting backend server) will need to ensure the token endpoint
supports the necessary CORS <xref target="WHATWG.CORS"/> headers to allow the responses
to be visible to the application.
If the authorization server provides additional endpoints to the application, such
as metadata URLs, dynamic client registration, revocation, introspection, discovery or
user info endpoints, these endpoints may also be accessed by the browser-based
application, and will also need to have the CORS headers defined to allow access.
See <xref target="I-D.ietf-oauth-browser-based-apps"/> for further details.</t>
        <section anchor="token-endpoint-client-authentication">
          <name>Client Authentication</name>
          <t>Confidential clients MUST
authenticate with the authorization server as described in
<xref target="client-authentication"/> when making requests to the token endpoint.</t>
          <t>Client authentication is used for:</t>
          <ul spacing="normal">
            <li>
              <t>Enforcing the binding of refresh tokens and authorization codes to
the client they were issued to.  Client authentication adds an
additional layer of security when an authorization code is transmitted
to the redirection endpoint over an insecure channel.</t>
            </li>
            <li>
              <t>Recovering from a compromised client by disabling the client or
changing its credentials, thus preventing an attacker from abusing
stolen refresh tokens.  Changing a single set of client
credentials is significantly faster than revoking an entire set of
refresh tokens.</t>
            </li>
            <li>
              <t>Implementing authentication management best practices, which
require periodic credential rotation.  Rotation of an entire set
of refresh tokens can be challenging, while rotation of a single
set of client credentials is significantly easier.</t>
            </li>
          </ul>
        </section>
        <section anchor="token-request">
          <name>Token Request</name>
          <t>The client makes a request to the token endpoint by sending the
following parameters using the form-encoded serialization
format per <xref target="form-serialization"/> with a character encoding of UTF-8 in the HTTP
request content:</t>
          <dl>
            <dt>"grant_type":</dt>
            <dd>
              <t>REQUIRED.  Identifier of the grant type the client uses with the particular token request.
This specification defines the values <tt>authorization_code</tt>, <tt>refresh_token</tt>, and <tt>client_credentials</tt>.
The grant type determines the further parameters required or supported by the token request. The
details of those grant types are defined below.</t>
            </dd>
            <dt>"client_id":</dt>
            <dd>
              <t>OPTIONAL.  The client identifier is needed when a form of client authentication that
relies on the parameter is used, or the <tt>grant_type</tt> requires identification of public clients.</t>
            </dd>
          </dl>
          <t>Confidential clients MUST authenticate with the authorization
server as described in <xref target="token-endpoint-client-authentication"/>.</t>
          <t>For example, the client makes the following HTTPS request
(with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=SplxlOBeZQQYbYS6WxSbIA
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>The authorization server MUST:</t>
          <ul spacing="normal">
            <li>
              <t>require client authentication for confidential clients
(or clients with other authentication requirements),</t>
            </li>
            <li>
              <t>authenticate the client if client authentication is included</t>
            </li>
          </ul>
          <t>Further grant type specific processing rules apply and are specified with the respective
grant type.</t>
        </section>
        <section anchor="token-response">
          <name>Token Response</name>
          <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token.</t>
          <t>If the request client
authentication failed or is invalid, the authorization server returns
an error response as described in <xref target="token-error-response"/>.</t>
          <t>The authorization server issues an access token and optional refresh
token by creating an HTTP response according to <xref target="json-serialization"/>,
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>"access_token":</dt>
            <dd>
              <t>REQUIRED.  The access token issued by the authorization server.</t>
            </dd>
            <dt>"token_type":</dt>
            <dd>
              <t>REQUIRED.  The type of the access token issued as described in
<xref target="access-tokens"/>.  Value is case insensitive.</t>
            </dd>
            <dt>"expires_in":</dt>
            <dd>
              <t>RECOMMENDED.  A JSON number that represents the lifetime
in seconds of the access token.  For
example, the value <tt>3600</tt> denotes that the access token will
expire in one hour from the time the response was generated.
If omitted, the authorization server SHOULD provide the
lifetime via other means or document the default value. Note
that the authorization server may prematurely expire an access
token and clients MUST NOT expect an access token to be valid
for the provided lifetime.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>RECOMMENDED, if identical to the scope requested by the client;
otherwise, REQUIRED.  The scope of the access token as
described by <xref target="access-token-scope"/>.</t>
            </dd>
            <dt>"refresh_token":</dt>
            <dd>
              <t>OPTIONAL.  The refresh token, which can be used to obtain new
access tokens based on the grant passed in the corresponding
token request.</t>
            </dd>
          </dl>
          <t>Authorization servers SHOULD determine, based on a risk assessment
and their own policies, whether to issue refresh tokens to a certain client.  If the
authorization server decides not to issue refresh tokens, the client
MAY obtain new access tokens by starting the OAuth flow over, for example
initiating a new authorization code request.  In such a case, the authorization
server may utilize cookies and persistent grants to optimize the user
experience.</t>
          <t>If refresh tokens are issued, those refresh tokens MUST be bound to
the scope and resource servers as consented by the resource owner.
This is to prevent privilege escalation by the legitimate client and
reduce the impact of refresh token leakage.</t>
          <t>The parameters are serialized into a JavaScript Object Notation (JSON)
structure as described in <xref target="json-serialization"/>.</t>
          <t>The authorization server MUST include the HTTP <tt>Cache-Control</tt>
response header field (see <xref section="5.2" sectionFormat="of" target="RFC9111"/>) with a value of <tt>no-store</tt> in any
response containing tokens, credentials, or other sensitive
information.</t>
          <t>For example:</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",
  "example_parameter":"example_value"
}
]]></artwork>
          <t>The client MUST ignore unrecognized value names in the response.  The
sizes of tokens and other values received from the authorization
server are left undefined.  The client should avoid making
assumptions about value sizes.  The authorization server SHOULD
document the size of any value it issues.</t>
        </section>
        <section anchor="token-error-response">
          <name>Error Response</name>
          <t>The authorization server responds with an HTTP 400 (Bad Request)
status code (unless specified otherwise) and includes the following
parameters with the response:</t>
          <dl>
            <dt>"error":</dt>
            <dd>
              <t>REQUIRED.  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 (other than grant type),
repeats a parameter, includes multiple credentials,
utilizes more than one mechanism for authenticating the
client, contains a <tt>code_verifier</tt> although no
<tt>code_challenge</tt> was sent in the authorization request,
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 MAY
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 MUST
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>"invalid_grant":</dt>
                <dd>
                  <t>The provided authorization grant (e.g., authorization
code, resource owner credentials) or refresh token is
invalid, expired, revoked, does not match the redirect
URI used in the authorization request, or was issued to
another client.</t>
                </dd>
                <dt>"unauthorized_client":</dt>
                <dd>
                  <t>The authenticated client is not authorized to use this
authorization grant type.</t>
                </dd>
                <dt>"unsupported_grant_type":</dt>
                <dd>
                  <t>The authorization grant type is not supported by the
authorization server.</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>
              </dl>
              <t>Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
            </dd>
            <dt>"error_description":</dt>
            <dd>
              <t>OPTIONAL.  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 MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
            </dd>
            <dt>"error_uri":</dt>
            <dd>
              <t>OPTIONAL.  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 MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</t>
            </dd>
          </dl>
          <t>The parameters are included in the content of the HTTP response
using the <tt>application/json</tt> media type as defined in <xref target="json-serialization"/>.</t>
          <t>For example:</t>
          <artwork><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
 "error": "invalid_request"
}
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="obtaining-authorization">
      <name>Grant Types</name>
      <t>To request an access token, the client obtains authorization from the
resource owner. This specification defines the following authorization grant types:</t>
      <ul spacing="normal">
        <li>
          <t>authorization code</t>
        </li>
        <li>
          <t>client credentials, and</t>
        </li>
        <li>
          <t>refresh token</t>
        </li>
      </ul>
      <t>It also provides an extension mechanism for defining additional grant types.</t>
      <section anchor="authorization-code-grant">
        <name>Authorization Code Grant</name>
        <t>The authorization code grant type is used to obtain both access
tokens and refresh tokens.</t>
        <t>The grant type uses the additional authorization endpoint to let the authorization server
interact with the resource owner in order to get consent for resource access.</t>
        <t>Since this is a redirect-based flow, the client must be capable of
initiating the flow with the resource owner's user agent (typically a web
browser) and capable of being redirected back to from the authorization server.</t>
        <figure anchor="fig-authorization-code-flow">
          <name>Authorization Code Flow</name>
          <artwork><![CDATA[
 +----------+
 | Resource |
 |   Owner  |
 +----------+
       ^
       |
       |
 +-----|----+          Client Identifier      +---------------+
 | .---+---------(1)-- & Redirect URI ------->|               |
 | |   |    |                                 |               |
 | |   '---------(2)-- User authenticates --->|               |
 | | User-  |                                 | Authorization |
 | | Agent  |                                 |     Server    |
 | |        |                                 |               |
 | |    .--------(3)-- Authorization Code ---<|               |
 +-|----|---+                                 +---------------+
   |    |                                         ^      v
   |    |                                         |      |
   ^    v                                         |      |
 +---------+                                      |      |
 |         |>---(4)-- Authorization Code ---------'      |
 |  Client |          & Redirect URI                     |
 |         |                                             |
 |         |<---(5)----- Access Token -------------------'
 +---------+       (w/ Optional Refresh Token)
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-authorization-code-flow"/> includes the following steps:</t>
        <t>(1)  The client initiates the flow by directing the resource owner's
     user agent to the authorization endpoint.  The client includes
     its client identifier, code challenge (derived from a generated code verifier),
     optional requested scope, optional local state, and a
     redirect URI to which the authorization server will send the
     user agent back once access is granted (or denied).</t>
        <t>(2)  The authorization server authenticates the resource owner (via
     the user agent) and establishes whether the resource owner
     grants or denies the client's access request.</t>
        <t>(3)  Assuming the resource owner grants access, the authorization
     server redirects the user agent back to the client using the
     redirect URI provided earlier (in the request or during
     client registration).  The redirect URI includes an
     authorization code and any local state provided by the client
     earlier.</t>
        <t>(4)  The client requests an access token from the authorization
     server's token endpoint by including the authorization code
     received in the previous step, and including its code verifier.
     When making the request, the
     client authenticates with the authorization server if it can.  The client
     includes the redirect URI used to obtain the authorization
     code for verification.</t>
        <t>(5)  The authorization server authenticates the client when possible, validates the
     authorization code, validates the code verifier, and ensures that the redirect URI
     received matches the URI used to redirect the client in
     step (3).  If valid, the authorization server responds back with
     an access token and, optionally, a refresh token.</t>
        <section anchor="authorization-request">
          <name>Authorization Request</name>
          <t>To begin the authorization request, the client builds the authorization
request URI by adding parameters to the authorization server's
authorization endpoint URI. The client will eventually redirect the user agent
to this URI to initiate the request.</t>
          <t>Clients use a unique secret, called the "code verifier", per authorization request to protect against authorization code
injection and CSRF attacks. The client first generates the code verifier, then derives the "code challenge" to include in the authorization request. The client
uses the code verifier when exchanging the authorization code at the token endpoint to prove that the client using the
authorization code is the same client that requested it.</t>
          <t>The client constructs the request URI by adding the following
parameters to the query component of the authorization endpoint URI
as described by <xref target="query-string-serialization"/>:</t>
          <dl>
            <dt>"response_type":</dt>
            <dd>
              <t>REQUIRED.  The authorization endpoint supports different sets of request and response
parameters. The client determines the type of flow by using a certain <tt>response_type</tt>
value. This specification defines the value <tt>code</tt>, which must be used to signal that
the client wants to use the authorization code flow.</t>
            </dd>
          </dl>
          <t>Extension response types MAY contain a space-delimited (%x20) list of
values, where the order of values does not matter (e.g., response
type <tt>a b</tt> is the same as <tt>b a</tt>).  The meaning of such composite
response types is defined by their respective specifications.</t>
          <t>Some extension response types are defined by <xref target="OpenID"/>.</t>
          <t>If an authorization request is missing the <tt>response_type</tt> parameter,
or if the response type is not understood, the authorization server
MUST return an error response as described in <xref target="authorization-code-error-response"/>.</t>
          <dl>
            <dt>"client_id":</dt>
            <dd>
              <t>REQUIRED.  The client identifier as described in <xref target="client-identifier"/>.</t>
            </dd>
            <dt>"code_challenge":</dt>
            <dd>
              <t>REQUIRED unless the specific requirements of <xref target="authorization_codes"/> are met.  Code challenge derived from the code verifier.</t>
            </dd>
            <dt>"code_challenge_method":</dt>
            <dd>
              <t>OPTIONAL, defaults to <tt>plain</tt> if not present in the request.  Code
verifier transformation method is <tt>S256</tt> or <tt>plain</tt>.</t>
            </dd>
            <dt>"redirect_uri":</dt>
            <dd>
              <t>OPTIONAL if only one redirect URI is registered for this client.
REQUIRED if multiple redirict URIs are registered for this client.
See <xref target="multiple-redirect-uris"/>.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>.</t>
            </dd>
            <dt>"state":</dt>
            <dd>
              <t>OPTIONAL.  An opaque value used by the client to maintain
state between the request and callback.  The authorization
server includes this value when redirecting the user agent back
to the client.</t>
            </dd>
          </dl>
          <t>The <tt>code_verifier</tt> is a unique high-entropy cryptographically random string generated
for each authorization request, using the unreserved characters <tt>[A-Z] / [a-z] / [0-9] / "-" / "." / "_" / "~"</tt>,
with a minimum length of 43 characters and a maximum length of 128 characters.</t>
          <t>The client stores the <tt>code_verifier</tt> temporarily, and calculates the
<tt>code_challenge</tt> which it uses in the authorization request.</t>
          <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
          <artwork><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          <t>Clients SHOULD use code challenge methods that
do not expose the <tt>code_verifier</tt> in the authorization request.
Otherwise, attackers that can read the authorization request (cf.
Attacker A4 in <xref target="RFC9700"/>) can break the security provided
by this mechanism. Currently, <tt>S256</tt> is the only such method.</t>
          <t>NOTE: The code verifier SHOULD have enough entropy to make it
impractical to guess the value.  It is RECOMMENDED that the output of
a suitable random number generator be used to create a 32-octet
sequence.  The octet sequence is then base64url-encoded to produce a
43-octet URL-safe string to use as the code verifier.</t>
          <t>The client then creates a <tt>code_challenge</tt> derived from the code
verifier by using one of the following transformations on the code
verifier:</t>
          <artwork><![CDATA[
S256
  code_challenge = BASE64URL-ENCODE(SHA256(ASCII(code_verifier)))

plain
  code_challenge = code_verifier
]]></artwork>
          <t>If the client is capable of using <tt>S256</tt>, it MUST use <tt>S256</tt>, as
<tt>S256</tt> is Mandatory To Implement (MTI) on the server.  Clients are
permitted to use <tt>plain</tt> only if they cannot support <tt>S256</tt> for some
technical reason, for example constrained environments that do not have
a hashing function available, and know via out-of-band configuration or via
Authorization Server Metadata <xref target="RFC8414"/> that the server supports <tt>plain</tt>.</t>
          <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
          <artwork><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          <t>The properties <tt>code_challenge</tt> and <tt>code_verifier</tt> are adopted from the OAuth 2.0 extension
known as "Proof-Key for Code Exchange", or PKCE <xref target="RFC7636"/> where this technique
was originally developed.</t>
          <t>Authorization servers MUST support the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters.</t>
          <t>Clients MUST use <tt>code_challenge</tt> and <tt>code_verifier</tt> and
authorization servers MUST enforce their use except under the conditions
described in <xref target="authorization_codes"/>. In this case, using and enforcing
<tt>code_challenge</tt> and <tt>code_verifier</tt> as described in the following is still
RECOMMENDED.</t>
          <t>The <tt>state</tt> and <tt>scope</tt> parameters SHOULD NOT include sensitive
client or resource owner information in plain text, as they can be
transmitted over insecure channels or stored insecurely.</t>
          <t>The client directs the resource owner to the constructed URI using an
HTTP redirection, or by other means available to it via the user agent.</t>
          <t>For example, the client directs the user agent to make the following
HTTPS request (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
GET /authorize?response_type=code&client_id=s6BhdRkqt3&state=xyz
    &redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
    &code_challenge=6fdkQaPm51l13DSukcAH3Mdx7_ntecHYd1vi3n0hMZY
    &code_challenge_method=S256 HTTP/1.1
Host: server.example.com
]]></artwork>
          <t>The authorization server validates the request to ensure that all
required parameters are present and valid.</t>
          <t>In particular, the authorization server MUST validate the <tt>redirect_uri</tt>
in the request if present, ensuring that it matches one of the registered
redirect URIs previously established during client registration (<xref target="client-registration"/>).
When comparing the two URIs the authorization server MUST ensure that the
two URIs are equal, see <xref section="6.2.1" sectionFormat="of" target="RFC3986"/>, Simple String Comparison, for details.
The only exception is native apps using a localhost URI: In this case, the authorization server
MUST allow variable port numbers as described in <xref section="7.3" sectionFormat="of" target="RFC8252"/>.</t>
          <t>If the request is valid,
the authorization server authenticates the resource owner and obtains
an authorization decision (by asking the resource owner or by
establishing approval via other means).</t>
          <t>When a decision is established, the authorization server directs the
user agent to the provided client redirect URI using an HTTP
redirection response, or by other means available to it via the
user agent.</t>
        </section>
        <section anchor="authorization-response">
          <name>Authorization Response</name>
          <t>If the resource owner grants the access request, the authorization
server issues an authorization code and delivers it to the client by
adding the following parameters to the query component of the
redirect URI using the query string serialization described by
<xref target="query-string-serialization"/>, unless specified otherwise by an extension:</t>
          <dl>
            <dt>"code":</dt>
            <dd>
              <t>REQUIRED.  The authorization code is generated by the
authorization server and opaque to the client.  The authorization code MUST expire
shortly after it is issued to mitigate the risk of leaks.  A
maximum authorization code lifetime of 10 minutes is
RECOMMENDED. The authorization code is bound to
the client identifier, code challenge and redirect URI.</t>
            </dd>
            <dt>"state":</dt>
            <dd>
              <t>REQUIRED if the <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</t>
            </dd>
            <dt>"iss":</dt>
            <dd>
              <t>OPTIONAL. The identifier of the authorization server which the
client can use to prevent mix-up attacks, if the client interacts
with more than one authorization server. See <xref target="mix-up"/> and <xref target="RFC9207"/> for
additional details on when this parameter is necessary, and how the
client can use it to prevent mix-up attacks.</t>
            </dd>
          </dl>
          <t>For example, the authorization server redirects the user agent by
sending the following HTTP response:</t>
          <artwork><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA
          &state=xyz&iss=https%3A%2F%2Fauthorization-server.example.com
]]></artwork>
          <t>The client MUST ignore unrecognized response parameters.  The
authorization code string size is left undefined by this
specification.  The client should avoid making assumptions about code
value sizes.  The authorization server SHOULD document the size of
any value it issues.</t>
          <t>The authorization server MUST associate the <tt>code_challenge</tt> and
<tt>code_challenge_method</tt> values with the issued authorization code
so the code challenge can be verified later.</t>
          <t>The exact method that the server uses to associate the <tt>code_challenge</tt>
with the issued code is out of scope for this specification. The
code challenge could be stored on the server and associated with the
code there. The <tt>code_challenge</tt> and <tt>code_challenge_method</tt> values may
be stored in encrypted form in the code itself, but the server
MUST NOT include the <tt>code_challenge</tt> value in a response parameter
in a form that entities other than the AS can extract.</t>
          <t>Clients MUST prevent injection (replay) of authorization codes into the
authorization response by attackers. Using <tt>code_challenge</tt> and <tt>code_verifier</tt> prevents injection of authorization codes since the authorization server will reject a token request with a mismatched <tt>code_verifier</tt>. See <xref target="authorization_codes"/> for more details.</t>
          <section anchor="authorization-code-error-response">
            <name>Error Response</name>
            <t>If the request fails due to a missing, invalid, or mismatching
redirect URI, or if the client identifier is missing or invalid,
the authorization server SHOULD inform the resource owner of the
error and MUST NOT automatically redirect the user agent to the
invalid redirect URI.</t>
            <t>An AS MUST reject requests without a <tt>code_challenge</tt> from public clients,
and MUST reject such requests from other clients unless there is
reasonable assurance that the client mitigates authorization code injection
in other ways. See <xref target="authorization_codes"/> for details.</t>
            <t>If the server does not support the requested <tt>code_challenge_method</tt> transformation,
the authorization endpoint MUST return the
authorization error response with <tt>error</tt> value set to
<tt>invalid_request</tt>.  The <tt>error_description</tt> or the response of
<tt>error_uri</tt> SHOULD explain the nature of error, e.g., transform
algorithm not supported.</t>
            <t>If the resource owner denies the access request or if the request
fails for reasons other than a missing or invalid redirect URI,
the authorization server informs the client by adding the following
parameters to the query component of the redirect URI as described
by <xref target="query-string-serialization"/>:</t>
            <dl>
              <dt>"error":</dt>
              <dd>
                <t>REQUIRED.  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
invalid parameter value, includes a parameter more than
once, or is otherwise malformed.</t>
                  </dd>
                  <dt>"unauthorized_client":</dt>
                  <dd>
                    <t>The client is not authorized to request an authorization
code using this method.</t>
                  </dd>
                  <dt>"access_denied":</dt>
                  <dd>
                    <t>The resource owner or authorization server denied the
request.</t>
                  </dd>
                  <dt>"unsupported_response_type":</dt>
                  <dd>
                    <t>The authorization server does not support obtaining an
authorization code using this method.</t>
                  </dd>
                  <dt>"invalid_scope":</dt>
                  <dd>
                    <t>The requested scope is invalid, unknown, or malformed.</t>
                  </dd>
                  <dt>"server_error":</dt>
                  <dd>
                    <t>The authorization server encountered an unexpected
condition that prevented it from fulfilling the request.
(This error code is needed because a 500 Internal Server
Error HTTP status code cannot be returned to the client
via an HTTP redirect.)</t>
                  </dd>
                  <dt>"temporarily_unavailable":</dt>
                  <dd>
                    <t>The authorization server is currently unable to handle
the request due to a temporary overloading or maintenance
of the server.  (This error code is needed because a 503
Service Unavailable HTTP status code cannot be returned
to the client via an HTTP redirect.)</t>
                  </dd>
                </dl>
                <t>Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_description":</dt>
              <dd>
                <t>OPTIONAL.  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 MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_uri":</dt>
              <dd>
                <t>OPTIONAL.  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 MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"state":</dt>
              <dd>
                <t>REQUIRED if a <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</t>
              </dd>
              <dt>"iss":</dt>
              <dd>
                <t>OPTIONAL. The identifier of the authorization server. See
<xref target="authorization-response"/> above for details.</t>
              </dd>
            </dl>
            <t>For example, the authorization server redirects the user agent by
sending the following HTTP response:</t>
            <artwork><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?error=access_denied
          &state=xyz&iss=https%3A%2F%2Fauthorization-server.example.com
]]></artwork>
          </section>
        </section>
        <section anchor="code-token-extension">
          <name>Token Endpoint Extension</name>
          <t>The authorization grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>authorization_code</tt>.</t>
          <t>If this value is set, the following additional token request parameters beyond <xref target="token-request"/> are supported:</t>
          <dl>
            <dt>"code":</dt>
            <dd>
              <t>REQUIRED.  The authorization code received from the
authorization server.</t>
            </dd>
            <dt>"code_verifier":</dt>
            <dd>
              <t>REQUIRED, if the <tt>code_challenge</tt> parameter was included in the authorization
request. MUST NOT be used otherwise. The original code verifier string.</t>
            </dd>
            <dt>"client_id":</dt>
            <dd>
              <t>REQUIRED, if the client is not authenticating with the authorization server
as described in <xref target="token-endpoint-client-authentication"/>.</t>
            </dd>
          </dl>
          <t>The authorization server MUST return an access token only once for a given authorization code.</t>
          <t>If a second valid token request is made with the same
authorization code as a previously successful token request,
the authorization server MUST deny the request and SHOULD
revoke (when possible) all access tokens and refresh tokens
previously issued based on that authorization code.
See <xref target="authorization-code-reuse"/> for further details.</t>
          <t>For example, the client makes the following HTTPS request
(with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code
&code=SplxlOBeZQQYbYS6WxSbIA
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>In addition to the processing rules in <xref target="token-request"/>, the authorization server MUST:</t>
          <ul spacing="normal">
            <li>
              <t>ensure that the authorization code was issued to the authenticated
confidential client, or if the client is public, ensure that the
code was issued to <tt>client_id</tt> in the request,</t>
            </li>
            <li>
              <t>verify that the authorization code is valid,</t>
            </li>
            <li>
              <t>verify that the <tt>code_verifier</tt> parameter is present if and only if a
<tt>code_challenge</tt> parameter was present in the authorization request,</t>
            </li>
            <li>
              <t>if a <tt>code_verifier</tt> is present, verify the <tt>code_verifier</tt> by calculating
the code challenge from the received <tt>code_verifier</tt> and comparing it with
the previously associated <tt>code_challenge</tt>, after first transforming it
according to the <tt>code_challenge_method</tt> method specified by the client, and</t>
            </li>
            <li>
              <t>If there was no <tt>code_challenge</tt> in the authorization request associated
with the authorization code in the token request, the authorization server MUST
reject the token request.</t>
            </li>
          </ul>
          <t>See <xref target="redirect-uri-in-token-request"/> for details on backwards compatibility
with OAuth 2.0 clients regarding the <tt>redirect_uri</tt> parameter in the token request.</t>
        </section>
      </section>
      <section anchor="client-credentials-grant">
        <name>Client Credentials Grant</name>
        <t>The client can request an access token using only its client
credentials (or other supported means of authentication) when the
client is requesting access to the protected resources under its
control, or those of another resource owner that have been previously
arranged with the authorization server (the method of which is beyond
the scope of this specification).</t>
        <t>The client credentials grant type MUST only be used by confidential clients.</t>
        <figure anchor="fig-client-credentials-grant">
          <name>Client Credentials Grant</name>
          <artwork><![CDATA[
     +---------+                                  +---------------+
     |         |                                  |               |
     |         |>--(1)- Client Authentication --->| Authorization |
     | Client  |                                  |     Server    |
     |         |<--(2)---- Access Token ---------<|               |
     |         |                                  |               |
     +---------+                                  +---------------+
]]></artwork>
        </figure>
        <t>The use of the client credentials grant illustrated in <xref target="fig-client-credentials-grant"/> includes the following steps:</t>
        <t>(1)  The client authenticates with the authorization server and
     requests an access token from the token endpoint.</t>
        <t>(2)  The authorization server authenticates the client, and if valid,
     issues an access token.</t>
        <section anchor="client-credentials-access-token-request">
          <name>Token Endpoint Extension</name>
          <t>The client credentials grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>client_credentials</tt>.</t>
          <t>If this value is set, the following additional token request parameters beyond <xref target="token-request"/> are supported:</t>
          <dl>
            <dt>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>.</t>
            </dd>
          </dl>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
]]></artwork>
          <t>The authorization server MUST authenticate the client.</t>
        </section>
      </section>
      <section anchor="refreshing-an-access-token">
        <name>Refresh Token Grant</name>
        <t>The refresh token is a credential issued by the authorization server to a client, which can be used
to obtain new (fresh) access tokens based on an existing grant. The client uses this option either because the previous access
token has expired or the client previously obtained an access token with a scope more narrow than
approved by the respective grant and later requires an access token with a different scope
under the same grant.</t>
        <t>Refresh tokens MUST be kept confidential in transit and storage, and
shared only among the authorization server and the client to whom the
refresh tokens were issued.  The authorization server MUST maintain
the binding between a refresh token and the client to whom it was
issued.</t>
        <t>The authorization server MUST verify the binding between the refresh
token and client identity whenever the client identity can be
authenticated.  When client authentication is not possible, the
authorization server SHOULD issue sender-constrained refresh tokens
or use refresh token rotation as described in <xref target="refresh-token-endpoint-extension"/>.</t>
        <t>The authorization server MUST ensure that refresh tokens cannot be
generated, modified, or guessed to produce valid refresh tokens by
unauthorized parties.</t>
        <section anchor="refresh-token-endpoint-extension">
          <name>Token Endpoint Extension</name>
          <t>The refresh token grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>refresh_token</tt>.</t>
          <t>If this value is set, the following additional parameters beyond <xref target="token-request"/> are supported:</t>
          <dl>
            <dt>"refresh_token":</dt>
            <dd>
              <t>REQUIRED.  The refresh token issued to the client.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>. The requested scope MUST NOT include any scope
not originally granted by the resource owner, and if omitted is
treated as equal to the scope originally granted by the
resource owner.</t>
            </dd>
          </dl>
          <t>Because refresh tokens are typically long-lasting credentials used to
request additional access tokens, the refresh token is bound to the
client to which it was issued. Confidential clients
MUST authenticate with the authorization server as described in
<xref target="token-endpoint-client-authentication"/>.</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
]]></artwork>
          <t>In addition to the processing rules in <xref target="token-request"/>, the authorization server MUST:</t>
          <ul spacing="normal">
            <li>
              <t>if client authentication is included in the request, ensure that the refresh token was issued to the authenticated client, OR if a client_id is included in the request, ensure the refresh token was issued to the matching client</t>
            </li>
            <li>
              <t>validate that the grant corresponding to this refresh token is still active</t>
            </li>
            <li>
              <t>validate the refresh token</t>
            </li>
          </ul>
          <t>Authorization servers MUST utilize one of these methods to detect
refresh token replay by malicious actors for public clients:</t>
          <ul spacing="normal">
            <li>
              <t><em>Sender-constrained refresh tokens:</em> the authorization server
cryptographically binds the refresh token to a certain client
instance, e.g., by utilizing DPoP <xref target="RFC9449"/> or mTLS <xref target="RFC8705"/>.</t>
            </li>
            <li>
              <t><em>Refresh token rotation:</em> the authorization server issues a new
refresh token with every access token refresh response.  The
previous refresh token is invalidated but information about the
relationship is retained by the authorization server.  If a
refresh token is compromised and subsequently used by both the
attacker and the legitimate client, one of them will present an
invalidated refresh token, which will inform the authorization
server of the breach.  The authorization server cannot determine
which party submitted the invalid refresh token, but it will
revoke the active refresh token as well as the access authorization
grant associated with it. This stops the attack at the
cost of forcing the legitimate client to obtain a fresh
authorization grant.</t>
            </li>
          </ul>
          <t>Implementation note: the grant to which a refresh token belongs
may be encoded into the refresh token itself.  This can enable an
authorization server to efficiently determine the grant to which a
refresh token belongs, and by extension, all refresh tokens that
need to be revoked.  Authorization servers MUST ensure the
integrity of the refresh token value in this case, for example,
using signatures.</t>
        </section>
        <section anchor="refresh-token-response">
          <name>Refresh Token Response</name>
          <t>If valid and authorized, the authorization server issues an access
token as described in <xref target="token-response"/>.</t>
          <t>The authorization server MAY issue a new refresh token, in which case
the client MUST discard the old refresh token and replace it with the
new refresh token.</t>
        </section>
        <section anchor="refresh-token-recommendations">
          <name>Refresh Token Recommendations</name>
          <t>The authorization server MAY revoke the old
refresh token after issuing a new refresh token to the client.  If a
new refresh token is issued, the refresh token scope MUST be
identical to that of the refresh token included by the client in the
request.</t>
          <t>Authorization servers MAY revoke refresh tokens automatically in case
of a security event, such as:</t>
          <ul spacing="normal">
            <li>
              <t>password change</t>
            </li>
            <li>
              <t>logout at the authorization server</t>
            </li>
          </ul>
          <t>Refresh tokens SHOULD expire if the client has been inactive for some
time, i.e., the refresh token has not been used to obtain new
access tokens for some time.  The expiration time is at the
discretion of the authorization server.  It might be a global value
or determined based on the client policy or the grant associated with
the refresh token (and its sensitivity).</t>
        </section>
      </section>
      <section anchor="extension-grants">
        <name>Extension Grants</name>
        <t>The client uses an extension grant type by specifying the grant type
using an absolute URI (defined by the authorization server) as the
value of the <tt>grant_type</tt> parameter of the token endpoint, and by
adding any additional parameters necessary.</t>
        <t>For example, to request an access token using the Device Authorization Grant
as defined by <xref target="RFC8628"/> after the user has authorized the client on a separate device,
the client makes the following HTTPS request
(with extra line breaks for display purposes only):</t>
        <artwork><![CDATA[
  POST /token HTTP/1.1
  Host: server.example.com
  Content-Type: application/x-www-form-urlencoded

  grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Adevice_code
  &device_code=GmRhmhcxhwEzkoEqiMEg_DnyEysNkuNhszIySk9eS
  &client_id=C409020731
]]></artwork>
        <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token as described in <xref target="token-response"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="token-error-response"/>.</t>
      </section>
    </section>
    <section anchor="accessing-protected-resources">
      <name>Resource Requests</name>
      <t>The client accesses protected resources by presenting an access
token to the resource server.  The resource server MUST validate the
access token and ensure that it has not expired and that its scope
covers the requested resource.  The methods used by the resource
server to validate the access token
are beyond the scope of this specification, but generally involve an
interaction or coordination between the resource server and the
authorization server. For example, when the resource server and
authorization server are colocated or are part of the same system,
they may share a database or other storage; when the two components
are operated independently, they may use Token Introspection <xref target="RFC7662"/>
or a structured access token format such as a JWT <xref target="RFC9068"/>.</t>
      <section anchor="bearer-token-requests">
        <name>Bearer Token Requests</name>
        <t>This section defines two methods of sending Bearer tokens in resource
requests to resource servers. Clients MUST use one of the two methods defined below,
and MUST NOT use more than one method to transmit the token in each request.</t>
        <t>In particular, clients MUST NOT send the access token in a URI query parameter,
and resource servers MUST ignore access tokens in a URI query parameter.</t>
        <section anchor="authorization-request-header-field">
          <name>Authorization Request Header Field</name>
          <t>When sending the access token in the <tt>Authorization</tt> request header
field defined by HTTP/1.1 <xref target="RFC7235"/>, the client uses the <tt>Bearer</tt>
scheme to transmit the access token.</t>
          <t>For example:</t>
          <artwork><![CDATA[
 GET /resource HTTP/1.1
 Host: server.example.com
 Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
          <t>The syntax of the <tt>Authorization</tt> header field for this scheme
follows the usage of the Basic scheme defined in <xref section="2" sectionFormat="of" target="RFC2617"/>.
Note that, as with Basic, it does not conform to the
generic syntax defined in <xref section="1.2" sectionFormat="of" target="RFC2617"/> but is compatible
with the general authentication framework in HTTP 1.1 Authentication
<xref target="RFC7235"/>, although it does not follow the preferred
practice outlined therein in order to reflect existing deployments.
The syntax for Bearer credentials is as follows:</t>
          <artwork><![CDATA[
token68    = 1*( ALPHA / DIGIT /
                 "-" / "." / "_" / "~" / "+" / "/" ) *"="
credentials = "bearer" 1*SP token68
]]></artwork>
          <t>Clients SHOULD make authenticated requests with a bearer token using
the <tt>Authorization</tt> request header field with the <tt>Bearer</tt> HTTP
authorization scheme.  Resource servers MUST support this method.</t>
          <t>As described in <xref section="11.1" sectionFormat="of" target="RFC9110"/>, the string <tt>bearer</tt>
is case-insensitive. This means all of the following are valid uses
of the <tt>Authorization</tt> header:</t>
          <ul spacing="normal">
            <li>
              <t><tt>Authorization: Bearer mF_9.B5f-4.1JqM</tt></t>
            </li>
            <li>
              <t><tt>Authorization: bearer mF_9.B5f-4.1JqM</tt></t>
            </li>
            <li>
              <t><tt>Authorization: BEARER mF_9.B5f-4.1JqM</tt></t>
            </li>
            <li>
              <t><tt>Authorization: bEaReR mF_9.B5f-4.1JqM</tt></t>
            </li>
          </ul>
        </section>
        <section anchor="form-encoded-content-parameter">
          <name>Form-Encoded Content Parameter</name>
          <t>When sending the access token in the HTTP request content, the
client adds the access token to the request content using the
<tt>access_token</tt> parameter.  The client MUST NOT use this method unless
all of the following conditions are met:</t>
          <ul spacing="normal">
            <li>
              <t>The HTTP request includes the <tt>Content-Type</tt> header
field set to <tt>application/x-www-form-urlencoded</tt>.</t>
            </li>
            <li>
              <t>The content follows the encoding requirements of the
<tt>application/x-www-form-urlencoded</tt> content-type as defined by
the URL Living Standard <xref target="WHATWG.URL"/>.</t>
            </li>
            <li>
              <t>The HTTP request content is single-part.</t>
            </li>
            <li>
              <t>The content to be encoded in the request MUST consist entirely
of ASCII <xref target="USASCII"/> characters.</t>
            </li>
            <li>
              <t>The HTTP request method is one for which the content has
defined semantics.  In particular, this means that the <tt>GET</tt>
method MUST NOT be used.</t>
            </li>
          </ul>
          <t>The content MAY include other request-specific parameters, in
which case the <tt>access_token</tt> parameter MUST be properly separated
from the request-specific parameters using <tt>&amp;</tt> character(s) (ASCII
code 38).</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security:</t>
          <artwork><![CDATA[
POST /resource HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

access_token=mF_9.B5f-4.1JqM
]]></artwork>
          <t>The <tt>application/x-www-form-urlencoded</tt> method SHOULD NOT be used
except in application contexts where participating clients do not
have access to the <tt>Authorization</tt> request header field.  Resource
servers MAY support this method.</t>
        </section>
      </section>
      <section anchor="access-token-validation">
        <name>Access Token Validation</name>
        <t>After receiving the access token, the resource server MUST check that
the access token is not yet expired, is authorized to access the requested
resource, was issued with the appropriate scope, and meets other policy
requirements of the resource server to access the protected resource.</t>
        <t>Access tokens generally fall into two categories: reference tokens or self-encoded tokens.
Reference tokens can be validated by querying the authorization server or
looking up the token in a token database, whereas self-encoded tokens
contain the authorization information in an encrypted and/or signed string
which can be extracted by the resource server.</t>
        <t>A standardized method to query the authorization server to check the validity
of an access token is defined in Token Introspection <xref target="RFC7662"/>.</t>
        <t>A standardized method of encoding information in a token string is
defined in JWT Profile for Access Tokens <xref target="RFC9068"/>.</t>
        <t>See <xref target="access-token-security-considerations"/> for additional considerations
around creating and validating access tokens.</t>
      </section>
      <section anchor="error-response">
        <name>Error Response</name>
        <t>If a resource access request fails, the resource server SHOULD inform
the client of the error. The details of the error response is determined by the particular token type, such as the
description of Bearer tokens in <xref target="bearer-token-error-codes"/>.</t>
        <section anchor="the-www-authenticate-response-header-field">
          <name>The WWW-Authenticate Response Header Field</name>
          <t>If the protected resource request does not include authentication
credentials or does not contain an access token that enables access
to the protected resource, the resource server MUST include the HTTP
<tt>WWW-Authenticate</tt> response header field; it MAY include it in
response to other conditions as well.  The <tt>WWW-Authenticate</tt> header
field uses the framework defined by HTTP/1.1 <xref target="RFC7235"/>.</t>
          <t>All challenges for this token type MUST use the auth-scheme
value <tt>Bearer</tt>.  This scheme MUST be followed by one or more
auth-param values.  The auth-param attributes used or defined by this
specification for this token type are as follows.  Other auth-param
attributes MAY be used as well.</t>
          <dl>
            <dt>"realm":</dt>
            <dd>
              <t>A <tt>realm</tt> attribute MAY be included to indicate the scope of
protection in the manner described in HTTP/1.1 <xref target="RFC7235"/>.  The
<tt>realm</tt> attribute MUST NOT appear more than once.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>The <tt>scope</tt> attribute is defined in <xref target="access-token-scope"/>.  The
<tt>scope</tt> attribute is a space-delimited list of case-sensitive scope
values indicating the required scope of the access token for
accessing the requested resource. <tt>scope</tt> values are implementation
defined; there is no centralized registry for them; allowed values
are defined by the authorization server.  The order of <tt>scope</tt> values
is not significant.  In some cases, the <tt>scope</tt> value will be used
when requesting a new access token with sufficient scope of access to
utilize the protected resource.  Use of the <tt>scope</tt> attribute is
OPTIONAL.  The <tt>scope</tt> attribute MUST NOT appear more than once.  The
<tt>scope</tt> value is intended for programmatic use and is not meant to be
displayed to end users.
</t>
              <t>Two example scope values follow; these are taken from the OpenID
Connect <xref target="OpenID.Messages"/> and the Open Authentication Technology
Committee (OATC) Online Multimedia Authorization Protocol <xref target="OMAP"/>
OAuth 2.0 use cases, respectively:</t>
              <artwork><![CDATA[
scope="openid profile email"
scope="urn:example:channel=HBO&urn:example:rating=G,PG-13"
]]></artwork>
            </dd>
            <dt>"error":</dt>
            <dd>
              <t>If the protected resource request included an access token and failed
authentication, the resource server SHOULD include the <tt>error</tt>
attribute to provide the client with the reason why the access
request was declined.  The parameter value is described in
<xref target="bearer-token-error-codes"/>.</t>
            </dd>
            <dt>"error_description":</dt>
            <dd>
              <t>The resource server MAY include the
<tt>error_description</tt> attribute to provide developers a human-readable
explanation that is not meant to be displayed to end users.</t>
            </dd>
            <dt>"error_uri":</dt>
            <dd>
              <t>The resource server MAY include the <tt>error_uri</tt> attribute with an absolute URI
identifying a human-readable web page explaining the error.</t>
            </dd>
          </dl>
          <t>The <tt>error</tt>, <tt>error_description</tt>, and <tt>error_uri</tt> attributes MUST NOT
appear more than once.</t>
          <t>Values for the <tt>scope</tt> attribute (specified in <xref target="scope-syntax"/>)
MUST NOT include characters outside the set %x21 / %x23-5B
/ %x5D-7E for representing scope values and %x20 for delimiters
between scope values.  Values for the <tt>error</tt> and <tt>error_description</tt>
attributes (specified in <xref target="error-syntax"/> and <xref target="error-description-syntax"/>) MUST
NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Values for the <tt>error_uri</tt> attribute (specified in <xref target="error-uri-syntax"/> of)
MUST conform to the URI-reference syntax and thus MUST NOT
include characters outside the set %x21 / %x23-5B / %x5D-7E.</t>
        </section>
        <section anchor="bearer-token-error-codes">
          <name>Error Codes</name>
          <t>When a request fails, the resource server responds using the
appropriate HTTP status code (typically, 400, 401, 403, or 405) and
includes one of the following error codes in the response:</t>
          <dl>
            <dt>"invalid_request":</dt>
            <dd>
              <t>The request is missing a required parameter, includes an
unsupported parameter or parameter value, repeats the same
parameter, uses more than one method for including an access
token, or is otherwise malformed.  The resource server SHOULD
respond with the HTTP 400 (Bad Request) status code.</t>
            </dd>
            <dt>"invalid_token":</dt>
            <dd>
              <t>The access token provided is expired, revoked, malformed, or
invalid for other reasons.  The resource server SHOULD respond with
the HTTP 401 (Unauthorized) status code.  The client MAY
request a new access token and retry the protected resource
request.</t>
            </dd>
            <dt>"insufficient_scope":</dt>
            <dd>
              <t>The request requires higher privileges (scopes) than provided by the
scopes granted to the client and represented by the access token.
The resource server SHOULD respond with the HTTP
403 (Forbidden) status code and MAY include the <tt>scope</tt>
attribute with the scope necessary to access the protected
resource.</t>
            </dd>
          </dl>
          <t>Extensions may define additional error codes or specify additional
circumstances in which the above error codes are returned.</t>
          <t>If the request lacks any authentication information (e.g., the client
was unaware that authentication is necessary or attempted using an
unsupported authentication method), the resource server SHOULD NOT
include an error code or other error information.</t>
          <t>For example:</t>
          <artwork><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
          <t>And in response to a protected resource request with an
authentication attempt using an expired access token:</t>
          <artwork><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example",
                  error="invalid_token",
                  error_description="The access token expired"
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="extensibility">
      <name>Extensibility</name>
      <section anchor="defining-access-token-types">
        <name>Defining Access Token Types</name>
        <t>Access token types can be defined in one of two ways: registered in
the Access Token Types registry (following the procedures in
<xref section="11.1" sectionFormat="of" target="RFC6749"/>), or by using a unique absolute URI as its name.</t>
        <section anchor="registered-access-token-types">
          <name>Registered Access Token Types</name>
          <t><xref target="RFC6750"/> establishes a common registry in <xref section="11.4" sectionFormat="of" target="RFC6749"/>
for error values to be shared among OAuth token authentication schemes.</t>
          <t>New authentication schemes designed primarily for OAuth token
authentication SHOULD define a mechanism for providing an error
status code to the client, in which the error values allowed are
registered in the error registry established by this specification.</t>
          <t>Such schemes MAY limit the set of valid error codes to a subset of
the registered values.  If the error code is returned using a named
parameter, the parameter name SHOULD be <tt>error</tt>.</t>
          <t>Other schemes capable of being used for OAuth token authentication,
but not primarily designed for that purpose, MAY bind their error
values to the registry in the same manner.</t>
          <t>New authentication schemes MAY choose to also specify the use of the
<tt>error_description</tt> and <tt>error_uri</tt> parameters to return error
information in a manner parallel to their usage in this
specification.</t>
          <t>Type names MUST conform to the
type-name ABNF.  If the type definition includes a new HTTP
authentication scheme, the type name SHOULD be identical to the HTTP
authentication scheme name (as defined by <xref target="RFC2617"/>).  The token type
<tt>example</tt> is reserved for use in examples.</t>
          <artwork><![CDATA[
type-name  = 1*name-char
name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
        </section>
        <section anchor="vendor-specific-access-token-types">
          <name>Vendor-Specific Access Token Types</name>
          <t>Types utilizing a URI name SHOULD be limited to vendor-specific
implementations that are not commonly applicable, and are specific to
the implementation details of the resource server where they are
used.</t>
          <t>All other types MUST be registered.</t>
        </section>
      </section>
      <section anchor="defining-new-endpoint-parameters">
        <name>Defining New Endpoint Parameters</name>
        <t>New request or response parameters for use with the authorization
endpoint or the token endpoint are defined and registered in the
OAuth Parameters registry following the procedure in <xref section="11.2" sectionFormat="of" target="RFC6749"/>.</t>
        <t>Parameter names MUST conform to the param-name ABNF, and parameter
values syntax MUST be well-defined (e.g., using ABNF, or a reference
to the syntax of an existing parameter).</t>
        <artwork><![CDATA[
param-name  = 1*name-char
name-char   = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
        <t>Unregistered vendor-specific parameter extensions that are not
commonly applicable and that are specific to the implementation
details of the authorization server where they are used SHOULD
utilize a vendor-specific prefix that is not likely to conflict with
other registered values (e.g., begin with 'companyname_').</t>
      </section>
      <section anchor="defining-new-authorization-grant-types">
        <name>Defining New Authorization Grant Types</name>
        <t>New authorization grant types can be defined by assigning them a
unique absolute URI for use with the <tt>grant_type</tt> parameter.  If the
extension grant type requires additional token endpoint parameters,
they MUST be registered in the OAuth Parameters registry as described
by <xref section="11.2" sectionFormat="of" target="RFC6749"/>.</t>
      </section>
      <section anchor="new-response-types">
        <name>Defining New Authorization Endpoint Response Types</name>
        <t>New response types for use with the authorization endpoint are
defined and registered in the Authorization Endpoint Response Types
registry following the procedure in <xref section="11.3" sectionFormat="of" target="RFC6749"/>.  Response type
names MUST conform to the response-type ABNF.</t>
        <artwork><![CDATA[
response-type  = response-name *( SP response-name )
response-name  = 1*response-char
response-char  = "_" / DIGIT / ALPHA
]]></artwork>
        <t>If a response type contains one or more space characters (%x20), it
is compared as a space-delimited list of values in which the order of
values does not matter.  Only one order of values can be registered,
which covers all other arrangements of the same set of values.</t>
        <t>For example, an extension can define and register the <tt>code other_token</tt>
response type.  Once registered, the same combination cannot be registered
as <tt>other_token code</tt>, but both values can be used to
denote the same response type.</t>
      </section>
      <section anchor="defining-additional-error-codes">
        <name>Defining Additional Error Codes</name>
        <t>In cases where protocol extensions (i.e., access token types,
extension parameters, or extension grant types) require additional
error codes to be used with the authorization code grant error
response (<xref target="authorization-code-error-response"/>), the token error response (<xref target="token-error-response"/>), or the
resource access error response (<xref target="error-response"/>), such error codes MAY be
defined.</t>
        <t>Extension error codes MUST be registered (following the procedures in
<xref section="11.4" sectionFormat="of" target="RFC6749"/>) if the extension they are used in conjunction with is a
registered access token type, a registered endpoint parameter, or an
extension grant type.  Error codes used with unregistered extensions
MAY be registered.</t>
        <t>Error codes MUST conform to the error ABNF and SHOULD be prefixed by
an identifying name when possible.  For example, an error identifying
an invalid value set to the extension parameter <tt>example</tt> SHOULD be
named <tt>example_invalid</tt>.</t>
        <artwork><![CDATA[
error      = 1*error-char
error-char = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>As a flexible and extensible framework, OAuth's security
considerations depend on many factors.  The following sections
provide implementers with security guidelines focused on the three
client profiles described in <xref target="client-types"/>: web application,
browser-based application, and native application.</t>
      <t>A comprehensive OAuth security model and analysis, as well as
background for the protocol design, is provided by
<xref target="RFC6819"/> and <xref target="RFC9700"/>.</t>
      <section anchor="access-token-security-considerations">
        <name>Access Token Security Considerations</name>
        <section anchor="security-threats">
          <name>Security Threats</name>
          <t>The following list presents several common threats against protocols
utilizing some form of tokens.  This list of threats is based on NIST
Special Publication 800-63 <xref target="NIST800-63"/>.</t>
          <section anchor="access-token-manufacturemodification">
            <name>Access token manufacture/modification</name>
            <t>An attacker may generate a bogus
access token or modify the token contents (such as the authentication or
attribute statements) of an existing token, causing the resource
server to grant inappropriate access to the client.  For example,
an attacker may modify the token to extend the validity period; a
malicious client may modify the assertion to gain access to
information that they should not be able to view.</t>
          </section>
          <section anchor="access-token-information-disclosure">
            <name>Access token information disclosure</name>
            <t>Access tokens may contain authentication and attribute
statements that include sensitive information.</t>
            <t>If the client should be prevented from observing the contents of the access token,
content encryption MUST be applied.</t>
            <t>Since cookies are by default transmitted in cleartext, any
information contained in them is at risk of disclosure:
Bearer tokens MUST NOT be stored in cookies that can be sent in the
clear.
See Section 7 and 8 of <xref target="RFC6265"/> for security
considerations about cookies.</t>
          </section>
          <section anchor="access-token-redirect">
            <name>Access token redirect</name>
            <t>An attacker uses an access token generated for consumption
by one resource server to gain access to a different resource
server that mistakenly believes the token to be for it.</t>
          </section>
          <section anchor="access-token-replay">
            <name>Access token replay</name>
            <t>An attacker attempts to use an access token that has already
been used with that resource server in the past.</t>
          </section>
        </section>
        <section anchor="threat-mitigation">
          <name>Threat Mitigation</name>
          <t>A large range of threats can be mitigated by protecting the contents
of the access token by using a digital signature, and by following
best practices for signing key management such as periodic key rotation.</t>
          <t>Alternatively, a bearer token can contain a reference to
authorization information, rather than encoding the information
directly.  Using a reference may require an extra interaction between a
resource server and authorization server to resolve the reference to the
authorization information.  The mechanics of such an interaction are
not defined by this specification, but one such mechanism is defined
in Token Introspection <xref target="RFC7662"/>.</t>
          <t>This document does not specify the encoding or the contents of the
access token; hence, detailed recommendations about the means of
guaranteeing access token integrity protection are outside the scope of this
specification. One example of an encoding and
signing mechanism for access tokens is described in
JSON Web Token Profile for Access Tokens <xref target="RFC9068"/>.</t>
          <t>To deal with access token redirects, it is important for the authorization
server to include the identity of the intended recipients (the
audience), typically a single resource server (or a list of resource
servers), in the token.  Restricting the use of the token to a
specific scope is also RECOMMENDED.</t>
          <t><xref target="communication-security"/> provides information to
protect against access token disclosure and providing
confidentiality and integrity for the communications
between client, resource server and authorization server.</t>
        </section>
        <section anchor="summary-of-recommendations">
          <name>Summary of Recommendations</name>
          <section anchor="safeguard-bearer-tokens">
            <name>Safeguard bearer tokens</name>
            <t>Client implementations MUST ensure that
bearer tokens are not leaked to unintended parties, as they will
be able to use them to gain access to protected resources.  This
is the primary security consideration when using bearer tokens and
underlies all the more specific recommendations that follow.</t>
          </section>
          <section anchor="validate-tls-certificate-chains">
            <name>Validate TLS certificate chains</name>
            <t>The client MUST validate the TLS
certificate chain when making requests to protected resources.
Failing to do so may enable DNS hijacking attacks to steal the
token and gain unintended access.</t>
          </section>
          <section anchor="always-use-tls-https">
            <name>Always use TLS (https)</name>
            <t>Clients MUST always use TLS
(https) or equivalent transport security when making requests with
bearer tokens.  Failing to do so exposes the token to numerous
attacks that could give attackers unintended access.</t>
          </section>
          <section anchor="dont-store-bearer-tokens-in-http-cookies">
            <name>Don't store bearer tokens in HTTP cookies</name>
            <t>Implementations MUST NOT store
bearer tokens within cookies that can be sent in the clear (which
is the default transmission mode for cookies).  Implementations
that do store bearer tokens in cookies MUST take precautions
against cross-site request forgery.</t>
          </section>
          <section anchor="issue-short-lived-bearer-tokens">
            <name>Issue short-lived bearer tokens</name>
            <t>Authorization servers SHOULD issue
short-lived bearer tokens, particularly when
issuing tokens to clients that run within a web browser or other
environments where information leakage may occur.  Using
short-lived bearer tokens can reduce the impact of them being
leaked.</t>
          </section>
          <section anchor="issue-scoped-bearer-tokens">
            <name>Issue scoped bearer tokens</name>
            <t>Authorization servers SHOULD issue bearer tokens
that contain an audience restriction, scoping their use to the
intended resource server or set of resource servers.</t>
          </section>
          <section anchor="dont-pass-bearer-tokens-in-page-urls">
            <name>Don't pass bearer tokens in page URLs</name>
            <t>Bearer tokens MUST NOT be
passed in page URLs (for example, as query string parameters).
Instead, bearer tokens SHOULD be passed in HTTP message headers or
message bodies for which confidentiality measures are taken.
Browsers, web servers, and other software may not adequately
secure URLs in the browser history, web server logs, and other
data structures.  If bearer tokens are passed in page URLs,
attackers might be able to steal them from the history data, logs,
or other unsecured locations.</t>
          </section>
        </section>
        <section anchor="access-token-privilege-restriction">
          <name>Access Token Privilege Restriction</name>
          <t>The privileges associated with an access token SHOULD be restricted
to the minimum required for the particular application or use case.
This prevents clients from exceeding the privileges authorized by the
resource owner.  It also prevents users from exceeding their
privileges authorized by the respective security policy.  Privilege
restrictions also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server.  To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server.  If not, the resource server MUST refuse to serve
the respective request.  Clients and authorization servers MAY
utilize the parameters <tt>scope</tt> or <tt>resource</tt> as specified in
this document and <xref target="RFC8707"/>, respectively, to
determine the resource server they want to access.</t>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources.  To put this into effect,
the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource.  If not, the resource server must refuse to
serve the respective request.  Clients and authorization servers MAY
utilize the parameter <tt>scope</tt> and
<tt>authorization_details</tt> as specified in <xref target="RFC9396"/> to
determine those resources and/or actions.</t>
        </section>
      </section>
      <section anchor="security-client-authentication">
        <name>Client Authentication</name>
        <t>Depending on the overall process of client registration and credential
lifecycle management, this may affect the confidence an authorization
server has in a particular client.</t>
        <t>For example, authentication of a dynamically registered client does not
prove the identity of the client, it only ensures that repeated requests
to the authorization server were made from the same client instance. Such
clients may be limited in terms of which scopes they are allowed to request,
or may have other limitations such as shorter token lifetimes.</t>
        <t>In contrast, if there is a registered application whose developer's identity
was verified, who signed a contract and is issued a client secret
that is only used in a secure backend service, the authorization
server might allow this client to request more sensitive scopes
or to be issued longer-lasting tokens.</t>
      </section>
      <section anchor="client-impersonation">
        <name>Client Impersonation</name>
        <t>If a confidential client has its credentials stolen,
a malicious client can impersonate the client and obtain access
to protected resources.</t>
        <t>The authorization server SHOULD enforce explicit resource owner
authentication and provide the resource owner with information about
the client and the requested authorization scope and lifetime.  It is
up to the resource owner to review the information in the context of
the current client and to authorize or deny the request.</t>
        <t>The authorization server SHOULD NOT process repeated authorization
requests automatically (without active resource owner interaction)
without authenticating the client or relying on other measures to
ensure that the repeated request comes from the original client and
not an impersonator.</t>
        <section anchor="native-app-client-impersonation">
          <name>Impersonation of Native Apps</name>
          <t>As stated above, the authorization
server SHOULD NOT process authorization requests automatically
without user consent or interaction, except when the identity of the
client can be assured.  This includes the case where the user has
previously approved an authorization request for a given client ID --
unless the identity of the client can be proven, the request SHOULD
be processed as if no previous request had been approved.</t>
          <t>Measures such as claimed <tt>https</tt> scheme redirects MAY be accepted by
authorization servers as identity proof.  Some operating systems may
offer alternative platform-specific identity features that MAY be
accepted, as appropriate.</t>
        </section>
        <section anchor="access-token-privilege-restriction-1">
          <name>Access Token Privilege Restriction</name>
          <t>The client SHOULD request access tokens with the minimal scope
necessary.  The authorization server SHOULD take the client identity
into account when choosing how to honor the requested scope and MAY
issue an access token with fewer scopes than requested.</t>
          <t>The privileges associated with an access token SHOULD be restricted to
the minimum required for the particular application or use case. This
prevents clients from exceeding the privileges authorized by the
resource owner. It also prevents users from exceeding their privileges
authorized by the respective security policy. Privilege restrictions
also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server. To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server. If not, the resource server MUST refuse to serve the
respective request. Clients and authorization servers MAY utilize the
parameters <tt>scope</tt> or <tt>resource</tt> as specified in
<xref target="RFC8707"/>, respectively, to determine the
resource server they want to access.</t>
        </section>
      </section>
      <section anchor="client-impersonating-resource-owner">
        <name>Client Impersonating Resource Owner</name>
        <t>Resource servers may make access control decisions based on the identity of a
resource owner for which an access token was issued, or based on the identity
of a client in the client credentials grant. If both options are possible,
depending on the details of the implementation, a client's identity may be
mistaken for the identity of a resource owner. For example, if a client is able
to choose its own <tt>client_id</tt> during registration with the authorization server,
a malicious client may set it to a value identifying an end user (e.g., a <tt>sub</tt>
value if OpenID Connect is used). If the resource server cannot properly
distinguish between access tokens issued to clients and access tokens issued to
end users, the client may then be able to access resource of the end user.</t>
        <t>If the authorization server has a common namespace for client IDs and user
identifiers, causing the resource server to be unable to distinguish an access
token authorized by a resource owner from an access token authorized by a client
itself, authorization servers SHOULD NOT allow clients to influence their <tt>client_id</tt> or
any other Claim if that can cause confusion with a genuine resource owner. Where
this cannot be avoided, authorization servers MUST provide other means for the
resource server to distinguish between the two types of access tokens.</t>
      </section>
      <section anchor="authorization-code-security-considerations">
        <name>Authorization Code Security Considerations</name>
        <section anchor="authorization_codes">
          <name>Authorization Code Injection</name>
          <t>Authorization code injection is an attack where the client receives an authorization code from the attacker in its redirect URI instead of the authorization code from the legitimate authorization server. Without protections in place, there is no mechanism by which the client can know that the attack has taken place. Authorization code injection can lead to both the attacker obtaining access to a victim's account, as well as a victim accidentally gaining access to the attacker's account.</t>
        </section>
        <section anchor="countermeasures">
          <name>Countermeasures</name>
          <t>To prevent injection of authorization codes into the client, using <tt>code_challenge</tt> and
<tt>code_verifier</tt> is REQUIRED for clients, and authorization servers MUST enforce
their use, unless both of the following criteria are met:</t>
          <ul spacing="normal">
            <li>
              <t>The client is a confidential client.</t>
            </li>
            <li>
              <t>In the specific deployment and the specific request, there is reasonable
assurance by the authorization server that the client implements the OpenID
Connect <tt>nonce</tt> mechanism properly.</t>
            </li>
          </ul>
          <t>In this case, using and enforcing <tt>code_challenge</tt> and <tt>code_verifier</tt> is still RECOMMENDED.</t>
          <t>The <tt>code_challenge</tt> or OpenID Connect <tt>nonce</tt> value MUST be
transaction-specific and securely bound to the client and the user agent in
which the transaction was started. If a transaction leads to an error, fresh
values for <tt>code_challenge</tt> or <tt>nonce</tt> MUST be chosen.</t>
          <t>Relying on the client to validate the OpenID Connect <tt>nonce</tt> parameter
means the authorization server has no way to confirm that the client
has actually protected itself against authorization code injection attacks.
If an attacker is able to inject an authorization code into a client, the
client would still exchange the injected authorization code and obtain tokens, and
would only later reject the ID token after validating the <tt>nonce</tt> and seeing
that it doesn't match. In contrast, the authorization server enforcing the
<tt>code_challenge</tt> and <tt>code_verifier</tt> parameters provides a higher security outcome,
since the authorization server is able to recognize the authorization code
injection attack pre-emptively and avoid issuing any tokens in the first place.</t>
          <t>Historic note: Although PKCE <xref target="RFC7636"/>
(where the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters were created)
was originally designed as a mechanism
to protect native apps from authorization code exfiltration attacks,
all kinds of OAuth clients, including web applications and other confidential clients,
are susceptible to authorziation code injection attacks, which are solved by
the <tt>code_challenge</tt> and <tt>code_verifier</tt> mechanism.</t>
        </section>
        <section anchor="authorization-code-reuse">
          <name>Reuse of Authorization Codes</name>
          <t>Several types of attacks are possible if authorization codes are able to be
used more than once.</t>
          <t>As described in <xref target="code-token-extension"/>, the authorization server must reject
a token request and revoke any issued tokens when receiving a second valid
request with an authorization code that has already been used to
issue an access token. If an attacker is able to exfiltrate an authorization code
and use it before the legitimate client, the attacker will obtain the access token
and the legitimate client will not. Revoking any issued tokens means the attacker's
tokens will then be revoked, stopping the attack from proceeding any further.</t>
          <t>However, the authorization server should only revoke issued tokens if the
request containing the authorization code is also valid, including any other parameters
such as the <tt>code_verifier</tt> and client authentication. The authorization server
SHOULD NOT revoke any issued tokens when receiving a replayed authorization code
that contains invalid parameters. If it were to do so, this would create a denial of service
opportunity for an attacker who is able to obtain an authorization code but
unable to obtain the client authentication or <tt>code_verifier</tt> by sending an invalid
authorization code request before the legitimate client and thereby revoking
the legitimate client's tokens once it makes the valid request.</t>
        </section>
        <section anchor="redirect_307">
          <name>HTTP 307 Redirect</name>
          <t>An authorization server which redirects a request that potentially contains user
credentials MUST NOT use the 307 status code (<xref section="15.4.8" sectionFormat="of" target="RFC9110"/>) for
redirection.
If an HTTP redirection (and not, for example,
JavaScript) is used for such a request, AS SHOULD use the status
code 303 ("See Other").</t>
          <t>At the authorization endpoint, a typical protocol flow is that the AS
prompts the user to enter their credentials in a form that is then
submitted (using the POST method) back to the authorization
server.  The AS checks the credentials and, if successful, redirects
the user agent to the client's redirect URI.</t>
          <t>If the status code 307 were used for redirection, the user agent
would send the user credentials via a POST request to the client.</t>
          <t>This discloses the sensitive credentials to the client.  If the
client is malicious, it can use the credentials to impersonate
the user at the AS.</t>
          <t>The behavior might be unexpected for developers, but is defined in
<xref section="15.4.8" sectionFormat="of" target="RFC9110"/>.  This status code does not require the user
agent to rewrite the POST request to a GET request and thereby drop
the form data in the POST request content.</t>
          <t>In HTTP <xref target="RFC9110"/>, only the status code 303
unambigously enforces rewriting the HTTP POST request to an HTTP GET
request.  For all other status codes, including the popular 302, user
agents can opt not to rewrite POST to GET requests and therefore
reveal the user credentials to the client.  (In practice, however,
most user agents will only show this behaviour for 307 redirects.)</t>
        </section>
      </section>
      <section anchor="ensuring-endpoint-authenticity">
        <name>Ensuring Endpoint Authenticity</name>
        <t>The risk related to man-in-the-middle attacks is mitigated by the
mandatory use of channel security mechanisms such as <xref target="RFC8446"/>
for communicating with the Authorization and Token Endpoints.
See <xref target="communication-security"/> for further details.</t>
      </section>
      <section anchor="credentials-guessing-attacks">
        <name>Credentials-Guessing Attacks</name>
        <t>The authorization server MUST prevent attackers from guessing access
tokens, authorization codes, refresh tokens, resource owner
passwords, and client credentials.</t>
        <t>The probability of an attacker guessing generated tokens (and other
credentials not intended for handling by end users) MUST be less than
or equal to 2^(-128) and SHOULD be less than or equal to 2^(-160).</t>
        <t>The authorization server MUST utilize other means to protect
credentials intended for end-user usage.</t>
      </section>
      <section anchor="phishing-attacks">
        <name>Phishing Attacks</name>
        <t>Wide deployment of this and similar protocols may cause end users to
become inured to the practice of being redirected to websites where
they are asked to enter their passwords.  If end users are not
careful to verify the authenticity of these websites before entering
their credentials, it will be possible for attackers to exploit this
practice to steal resource owners' passwords, and other phishable
credentials such as OTPs.</t>
        <t>Service providers should attempt to educate end users about the risks
phishing attacks pose and should provide mechanisms that make it easy
for end users to confirm the authenticity of their sites, such as using
phishing-resistant authenticators, as phishing resistant authenticators
will offer a credential to log in to a certain site to the user only if
the platform has successfully verified the site's origin. Client
developers should consider the security implications of how they
interact with the user agent (e.g., external, embedded), and the
ability of the end user to verify the authenticity of the
authorization server.</t>
        <t>See <xref target="communication-security"/> for further details
on mitigating the risk of phishing attacks.</t>
      </section>
      <section anchor="csrf_countermeasures">
        <name>Cross-Site Request Forgery</name>
        <t>An attacker might attempt to inject a request to the redirect URI of
the legitimate client on the victim's device, e.g., to cause the
client to access resources under the attacker's control. This is a
variant of an attack known as Cross-Site Request Forgery (CSRF).</t>
        <t>The traditional countermeasure is that clients pass a random value, also
known as a CSRF Token, in the <tt>state</tt> parameter that links the request to
the redirect URI to the user agent session as described. This
countermeasure is described in detail in <xref section="5.3.5" sectionFormat="of" target="RFC6819"/>. The
same protection is provided by the <tt>code_verifier</tt> parameter or the
OpenID Connect <tt>nonce</tt> value.</t>
        <t>When using <tt>code_verifier</tt> instead of <tt>state</tt> or <tt>nonce</tt> for CSRF protection, it is
important to note that:</t>
        <ul spacing="normal">
          <li>
            <t>Clients MUST ensure that the AS supports the <tt>code_challenge_method</tt>
intended to be used by the client. If an authorization server does not support the requested method,
<tt>state</tt> or <tt>nonce</tt> MUST be used for CSRF protection instead.</t>
          </li>
          <li>
            <t>If <tt>state</tt> is used for carrying application state, and integrity of
its contents is a concern, clients MUST protect <tt>state</tt> against
tampering and swapping. This can be achieved by binding the
contents of state to the browser session and/or signed/encrypted
state values <xref target="I-D.bradley-oauth-jwt-encoded-state"/>.</t>
          </li>
        </ul>
        <t>AS therefore MUST provide a way to detect their supported code challenge methods
either via AS metadata according to <xref target="RFC8414"/> or provide a
deployment-specific way to ensure or determine support.</t>
      </section>
      <section anchor="clickjacking">
        <name>Clickjacking</name>
        <t>As described in <xref section="4.4.1.9" sectionFormat="of" target="RFC6819"/>, the authorization
request is susceptible to clickjacking attacks, also called user
interface redressing. In such an attack, an attacker embeds the
authorization endpoint user interface in an innocuous context.
A user believing to interact with that context, for example,
clicking on buttons, inadvertently interacts with the authorization
endpoint user interface instead. The opposite can be achieved as
well: A user believing to interact with the authorization endpoint
might inadvertently type a password into an attacker-provided
input field overlaid over the original user interface. Clickjacking
attacks can be designed such that users can hardly notice the attack,
for example using almost invisible iframes overlaid on top of
other elements.</t>
        <t>An attacker can use this vector to obtain the user's authentication
credentials, change the scope of access granted to the client,
and potentially access the user's resources.</t>
        <t>Authorization servers MUST prevent clickjacking attacks. Multiple
countermeasures are described in <xref target="RFC6819"/>, including the use of the
<tt>X-Frame-Options</tt> HTTP response header field and frame-busting
JavaScript. In addition to those, authorization servers SHOULD also
use Content Security Policy (CSP) level 2 <xref target="CSP-2"/> or greater.</t>
        <t>To be effective, CSP must be used on the authorization endpoint and,
if applicable, other endpoints used to authenticate the user and
authorize the client (e.g., the device authorization endpoint, login
pages, error pages, etc.). This prevents framing by unauthorized
origins in user agents that support CSP. The client MAY permit being
framed by some other origin than the one used in its redirection
endpoint. For this reason, authorization servers SHOULD allow
administrators to configure allowed origins for particular clients
and/or for clients to register these dynamically.</t>
        <t>Using CSP allows authorization servers to specify multiple origins in
a single response header field and to constrain these using flexible
patterns (see <xref target="CSP-2"/> for details). Level 2 of this standard provides
a robust mechanism for protecting against clickjacking by using
policies that restrict the origin of frames (using <tt>frame-ancestors</tt>)
together with those that restrict the sources of scripts allowed to
execute on an HTML page (by using <tt>script-src</tt>). A non-normative
example of such a policy is shown in the following listing:</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Security-Policy: frame-ancestors https://ext.example.org:8000
Content-Security-Policy: script-src 'self'
X-Frame-Options: ALLOW-FROM https://ext.example.org:8000
...
]]></artwork>
        <t>Because some user agents do not support <xref target="CSP-2"/>, this technique
SHOULD be combined with others, including those described in
<xref target="RFC6819"/>, unless such legacy user agents are explicitly unsupported
by the authorization server. Even in such cases, additional
countermeasures SHOULD still be employed.</t>
      </section>
      <section anchor="injection-and-input-validation">
        <name>Injection and Input Validation</name>
        <t>An injection attack occurs when an input or otherwise external
variable is used by an application unsanitized and causes
modification to the application logic.  This may allow an attacker to
gain access to the application device or its data, cause denial of
service, or introduce a wide range of malicious side-effects.</t>
        <t>The authorization server and client MUST treat parameters received
as potentially malicious external input and apply appropriate protections,
in particular, the values of the <tt>state</tt> and <tt>redirect_uri</tt> parameters.</t>
      </section>
      <section anchor="open-redirectors">
        <name>Open Redirection</name>
        <t>An open redirector is an endpoint that forwards a user's browser
to an arbitrary URI obtained from a query parameter.
Such endpoints are sometimes implemented, for example, to show a
message before a user is then redirected to an external website,
or to redirect users back to a URL they were intending to visit
before being interrupted, e.g., by a login prompt.</t>
        <t>The following attacks can occur when an AS or client has an open
redirector.</t>
        <section anchor="open_redirector_on_client">
          <name>Client as Open Redirector</name>
          <t>Clients MUST NOT expose open redirectors. Attackers may use open
redirectors to produce URLs pointing to the client and utilize them to
exfiltrate authorization codes, as described in
<xref section="4.1.1" sectionFormat="of" target="RFC9700"/>.
Another abuse case is to produce URLs that appear to point to the client.
This might trick users into trusting the URL and follow it in their browser.
This can be abused for phishing.</t>
          <t>In order to prevent open redirection, clients should only redirect if
the target URLs are whitelisted or if the origin and integrity of a
request can be authenticated. Countermeasures against open redirection
are described by OWASP <xref target="owasp_redir"/>.</t>
        </section>
        <section anchor="authorization-server-as-open-redirector">
          <name>Authorization Server as Open Redirector</name>
          <t>Just as with clients, attackers could try to utilize a user's trust in
the authorization server (and its URL in particular) for performing
phishing attacks. OAuth authorization servers regularly redirect users
to other web sites (the clients), but must do so in a safe way.</t>
          <t><xref target="authorization-code-error-response"/> already prevents open redirects by
stating that the AS MUST NOT automatically redirect the user agent in case
of an invalid combination of <tt>client_id</tt> and <tt>redirect_uri</tt>.</t>
          <t>However, an attacker could also utilize a correctly registered
redirect URI to perform phishing attacks. The attacker could, for
example, register a client via dynamic client registration <xref target="RFC7591"/>
and execute one of the following attacks:</t>
          <ol spacing="normal" type="1"><li>
              <t>Intentionally send an erroneous authorization request, e.g., by
 using an invalid scope value, thus instructing the AS to redirect the
 user-agent to its phishing site.</t>
            </li>
            <li>
              <t>Intentionally send a valid authorization request with <tt>client_id</tt>
 and <tt>redirect_uri</tt> controlled by the attacker. After the user authenticates,
 the AS prompts the user to provide consent to the request. If the user
 notices an issue with the request and declines the request, the AS still
 redirects the user agent to the phishing site. In this case, the user agent
 will be redirected to the phishing site regardless of the action taken by
 the user.</t>
            </li>
            <li>
              <t>Intentionally send a valid silent authentication request (<tt>prompt=none</tt>)
 with <tt>client_id</tt> and <tt>redirect_uri</tt> controlled by the attacker. In this case,
 the AS will automatically redirect the user agent to the phishing site.</t>
            </li>
          </ol>
          <t>The AS MUST take precautions to prevent these threats. The AS MUST always
authenticate the user first and, with the exception of the silent authentication
use case, prompt the user for credentials when needed, before redirecting the
user. Based on its risk assessment, the AS needs to decide whether it can trust
the redirect URI or not. It could take into account  URI analytics done
internally or through some external service to evaluate the credibility and
trustworthiness content behind the URI, and the source of the redirect URI and
other client data.</t>
          <t>The AS SHOULD only automatically redirect the user agent if it trusts the
redirect URI.  If the URI is not trusted, the AS MAY inform the user and rely on
the user to make the correct decision.</t>
        </section>
      </section>
      <section anchor="transport-security">
        <name>Transport Security</name>
        <t>In some deployments, including those utilizing load balancers,
the TLS connection to the resource server terminates prior to the actual
server that provides the resource. This could leave the token
unprotected between the front-end server where the TLS connection
terminates and the back-end server that provides the resource. In
such deployments, sufficient measures MUST be employed to ensure
confidentiality of the access token between the front-end and back-
end servers; encryption of the token is one such possible measure.</t>
        <t>See <xref section="17.2" sectionFormat="of" target="RFC9110"/> for further informations.</t>
      </section>
      <section anchor="mix-up">
        <name>Authorization Server Mix-Up Mitigation</name>
        <t>Mix-up is an attack on scenarios where an OAuth client interacts with
two or more authorization servers and at least one authorization
server is under the control of the attacker. This can be the case,
for example, if the attacker uses dynamic registration to register the
client at his own authorization server or if an authorization server
becomes compromised.</t>
        <t>When an OAuth client can only interact with one authorization server, a mix-up
defense is not required. In scenarios where an OAuth client interacts with two
or more authorization servers, however, clients MUST prevent mix-up attacks. Two
different methods are discussed in the following.</t>
        <t>For both defenses, clients MUST store, for each authorization request, the
issuer they sent the authorization request to, bind this information to the
user agent, and check that the authorization response was received from the
correct issuer. Clients MUST ensure that the subsequent access token request,
if applicable, is sent to the same issuer. The issuer serves, via the associated
metadata, as an abstract identifier for the combination of the authorization
endpoint and token endpoint that are to be used in the flow. If an issuer identifier
is not available, for example, if neither OAuth metadata <xref target="RFC8414"/> nor OpenID
Connect Discovery <xref target="OpenID.Discovery"/> are used, a different unique identifier
for this tuple or the tuple itself can be used instead. For brevity of presentation,
such a deployment-specific identifier will be subsumed under the issuer (or
issuer identifier) in the following.</t>
        <t>Note: Just storing the authorization server URL is not sufficient to identify
mix-up attacks. An attacker might declare an uncompromised AS's authorization endpoint URL as
"their" AS URL, but declare a token endpoint under their own control.</t>
        <t>See <xref section="4.4" sectionFormat="of" target="RFC9700"/> for a detailed description
of several types of mix-up attacks.</t>
        <section anchor="mix-up-defense-via-issuer-identification">
          <name>Mix-Up Defense via Issuer Identification</name>
          <t>This defense requires that the authorization server sends his issuer identifier
in the authorization response to the client. When receiving the authorization
response, the client MUST compare the received issuer identifier to the stored
issuer identifier. If there is a mismatch, the client MUST abort the
interaction.</t>
          <t>There are different ways this issuer identifier can be transported to the client:</t>
          <ul spacing="normal">
            <li>
              <t>The issuer information can be transported, for
example, via an optional response parameter <tt>iss</tt> (see <xref target="authorization-response"/>).</t>
            </li>
            <li>
              <t>When OpenID Connect is used and an ID Token is returned in the authorization
response, the client can evaluate the <tt>iss</tt> claim in the ID Token.</t>
            </li>
          </ul>
          <t>In both cases, the <tt>iss</tt> value MUST be evaluated according to <xref target="RFC9207"/>.</t>
          <t>While this defense may require using an additional parameter to transport the
issuer information, it is a robust and relatively simple defense against mix-up.</t>
        </section>
        <section anchor="mix-up-defense-via-distinct-redirect-uris">
          <name>Mix-Up Defense via Distinct Redirect URIs</name>
          <t>For this defense, clients MUST use a distinct redirect URI for each issuer
they interact with.</t>
          <t>Clients MUST check that the authorization response was received from the correct
issuer by comparing the distinct redirect URI for the issuer to the URI where
the authorization response was received on. If there is a mismatch, the client
MUST abort the flow.</t>
          <t>While this defense builds upon existing OAuth functionality, it cannot be used
in scenarios where clients only register once for the use of many different
issuers (as in some open banking schemes) and due to the tight integration with
the client registration, it is harder to deploy automatically.</t>
          <t>Furthermore, an attacker might be able to circumvent the protection offered by
this defense by registering a new client with the "honest" AS using the redirect
URI that the client assigned to the attacker's AS. The attacker could then run
the attack as described above, replacing the
client ID with the client ID of his newly created client.</t>
          <t>This defense SHOULD therefore only be used if other options are not available.</t>
        </section>
      </section>
    </section>
    <section anchor="native-applications">
      <name>Native Applications</name>
      <t>Native applications are clients installed and executed on the device
used by the resource owner (i.e., desktop applications or native mobile
applications).  Native applications require special consideration
related to security, platform capabilities, and overall end-user
experience.</t>
      <t>The guidance in this section is primarily in the context of native mobile apps
as opposed to desktop apps. The native mobile platforms have matured
more than the desktop platforms in terms of the capabilities provided
to app developers relevant to the OAuth flows described here. While
the guidance is primarily focused on mobile apps, much of it generally can
apply to desktop apps as well.</t>
      <t>The authorization endpoint requires interaction between the client
and the resource owner's user agent. The best current practice is to
perform the OAuth authorization request in an external user agent
(typically the browser) rather than an embedded user agent (such as
one implemented with web-views).</t>
      <t>The native application can capture the
response from the authorization server in several different ways with
differing security properties of each. For example, using a redirect URI
with an "app-claimed URL" or custom URL scheme
registered with the operating system to invoke the
client as the handler, manual copy-and-paste of the credentials,
running a local web server, installing a user agent extension, or
by providing a redirect URI identifying a server-hosted
resource under the client's control, which in turn makes the
response available to the native application.</t>
      <t>Previously, it was common for native apps to use embedded user agents
(commonly implemented with web-views) for OAuth authorization
requests.  That approach has many drawbacks, including the host app
being able to copy user credentials and cookies as well as the user
needing to authenticate from scratch in each app.  See <xref target="native-apps-embedded-user-agents"/>
for a deeper analysis of the drawbacks of using embedded user agents
for OAuth.</t>
      <t>Native app authorization requests that use the system browser are more
secure and can take advantage of the user's authentication state on the device.
Being able to use the existing authentication session in the browser
enables single sign-on, as users don't need to authenticate to the
authorization server each time they use a new app (unless required by
the authorization server policy).</t>
      <t>Supporting authorization flows between a native app and the browser
is possible without changing the OAuth protocol itself, as the OAuth
authorization request and response are already defined in terms of
URIs.  This encompasses URIs that can be used for inter-app
communication.  Some OAuth server implementations that assume all
clients are confidential web clients will need to add an
understanding of public native app clients and the types of redirect
URIs they use to support this best practice.</t>
      <section anchor="client-authentication-of-native-apps">
        <name>Client Authentication of Native Apps</name>
        <t>Secrets that are statically included as part of an app distributed to
multiple users are not confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, authorization servers MUST NOT require client
authentication of native app clients using a shared secret,
as this serves no value beyond client identification which is
already provided by the <tt>client_id</tt> request parameter.</t>
        <t>Authorization servers that still require a statically included shared
secret for native app clients MUST treat the client as a public
client (as defined in <xref target="client-types"/>), and not
accept the secret as proof of the client's identity.  Without
additional measures, such clients are subject to client impersonation
(see <xref target="native-app-client-impersonation"/>).</t>
        <section anchor="native-app-registration">
          <name>Registration of Native App Clients</name>
          <t>Except when using a mechanism like Dynamic Client Registration
<xref target="RFC7591"/> to provision per-instance credentials, native apps are
classified as public clients, as defined in <xref target="client-types"/>,
and MUST be registered with the authorization server as
such.  Authorization servers MUST record the client type in the
client registration details in order to identify and process requests
accordingly.</t>
        </section>
        <section anchor="native-app-attestation">
          <name>Native App Attestation</name>
          <t>The draft specification <xref target="I-D.ietf-oauth-attestation-based-client-auth"/>
defines a mechanism that can be used by a native app to obtain
a key-bound attestation to authenticate to an authorization server or
resource server. This can provide a higher level of assurance of
a mobile app's identity.</t>
        </section>
      </section>
      <section anchor="using-inter-app-uri-communication-for-oauth-in-native-apps">
        <name>Using Inter-App URI Communication for OAuth in Native Apps</name>
        <t>Just as URIs are used for OAuth on the web to initiate
the authorization request and return the authorization response to
the requesting website, URIs can be used by native apps to initiate
the authorization request in the device's browser and return the
response to the requesting native app.</t>
        <t>By adopting the same methods used on the web for OAuth, benefits seen
in the web context like the usability of a single sign-on session and
the security of a separate authentication context are likewise gained
in the native app context.  Reusing the same approach also reduces
the implementation complexity and increases interoperability by
relying on standards-based web flows that are not specific to a
particular platform.</t>
        <t>Native apps MUST use an external
user agent to perform OAuth authorization requests.  This is achieved
by opening the authorization request in the browser (detailed in
<xref target="authorization-request-native-app"/>) and using a redirect URI that will return the
authorization response back to the native app (defined in <xref target="authorization-response-native-app"/>).</t>
      </section>
      <section anchor="authorization-request-native-app">
        <name>Initiating the Authorization Request from a Native App</name>
        <t>Native apps needing user authorization create an authorization
request URI with the authorization code grant type per <xref target="authorization-code-grant"/>
using a redirect URI capable of being received by the native app.</t>
        <t>The function of the redirect URI for a native app authorization
request is similar to that of a web-based authorization request.
Rather than returning the authorization response to the OAuth
client's server, the redirect URI used by a native app returns the
response to the app.  Several options for a redirect URI that will
return the authorization response to the native app in different
platforms are documented in <xref target="authorization-response-native-app"/>.  Any redirect URI that allows
the app to receive the URI and inspect its parameters is viable.</t>
        <t>After constructing the authorization request URI, the app uses
platform-specific APIs to open the URI in an external user agent.
Typically, the external user agent used is the default browser, that
is, the application configured for handling <tt>http</tt> and <tt>https</tt> scheme
URIs on the system; however, different browser selection criteria and
other categories of external user agents MAY be used.</t>
        <t>This best practice focuses on the browser as the RECOMMENDED external
user agent for native apps.  An external user agent designed
specifically for user authorization and capable of processing
authorization requests and responses like a browser MAY also be used.
Other external user agents, such as a native app provided by the
authorization server may meet the criteria set out in this best
practice, including using the same redirect URI properties, but
their use is out of scope for this specification.</t>
        <t>Some platforms support a browser feature known as "in-app browser
tabs", where an app can present a tab of the browser within the app
context without switching apps, but still retain key benefits of the
browser such as a shared authentication state and security context.
On platforms where they are supported, it is RECOMMENDED, for
usability reasons, that apps use in-app browser tabs for the
authorization request.</t>
      </section>
      <section anchor="authorization-response-native-app">
        <name>Receiving the Authorization Response in a Native App</name>
        <t>There are several redirect URI options available to native apps for
receiving the authorization response from the browser, the
availability and user experience of which varies by platform.</t>
        <section anchor="claimed-https-scheme-uri-redirection">
          <name>Claimed "https" Scheme URI Redirection</name>
          <t>Some operating systems, in particular mobile operating systems, allow apps to claim <tt>https</tt> URIs
(see <xref section="4.2.2" sectionFormat="of" target="RFC9110"/>)
in the domains they control.  When the browser encounters a
claimed URI, instead of the page being loaded in the browser, the
native app is launched with the URI supplied as a launch parameter.</t>
          <t>Such URIs can be used as redirect URIs by native apps.  They are
indistinguishable to the authorization server from a regular web-
based client redirect URI.  An example is:</t>
          <artwork><![CDATA[
https://app.example.com/oauth2redirect/example-provider
]]></artwork>
          <t>As the redirect URI alone is not enough to distinguish public native
app clients from confidential web clients, it is REQUIRED in
<xref target="native-app-registration"/> that the client type be recorded during client
registration to enable the server to determine the client type and
act accordingly.</t>
          <t>App-claimed <tt>https</tt> scheme redirect URIs have some advantages
compared to other native app redirect options in that the identity of
the destination app is guaranteed to the authorization server by the
operating system.  For this reason, native apps SHOULD use them over
the other options where possible.</t>
        </section>
        <section anchor="loopback-interface-redirection">
          <name>Loopback Interface Redirection</name>
          <t>Native apps that are able to open a port on the loopback network
interface without needing special permissions (typically, those on
desktop operating systems) can use the loopback interface to receive
the OAuth redirect.</t>
          <t>Loopback redirect URIs use the <tt>http</tt> scheme and are constructed with
the loopback IP literal and whatever port the client is listening on.</t>
          <t>That is, <tt>http://127.0.0.1:{port}/{path}</tt> for IPv4, and
<tt>http://[::1]:{port}/{path}</tt> for IPv6.  An example redirect using the
IPv4 loopback interface with a randomly assigned port:</t>
          <artwork><![CDATA[
http://127.0.0.1:51004/oauth2redirect/example-provider
]]></artwork>
          <t>An example redirect using the IPv6 loopback interface with a randomly
assigned port:</t>
          <artwork><![CDATA[
http://[::1]:61023/oauth2redirect/example-provider
]]></artwork>
          <t>While redirect URIs using the name <tt>localhost</tt> (i.e.,
<tt>http://localhost:{port}/{path}</tt>) function similarly to loopback IP
redirects, the use of <tt>localhost</tt> is NOT RECOMMENDED.  Specifying a
redirect URI with the loopback IP literal
rather than <tt>localhost</tt> avoids inadvertently listening on network
interfaces other than the loopback interface.  It is also less
susceptible to client-side firewalls and misconfigured host name
resolution on the user's device.</t>
          <t>The authorization server MUST allow any port to be specified at the
time of the request for loopback IP redirect URIs, to accommodate
clients that obtain an available ephemeral port from the operating
system at the time of the request.</t>
          <t>Clients SHOULD NOT assume that the device supports a particular
version of the Internet Protocol.  It is RECOMMENDED that clients
attempt to bind to the loopback interface using both IPv4 and IPv6
and use whichever is available.</t>
        </section>
        <section anchor="private-use-uri-scheme">
          <name>Private-Use URI Scheme Redirection</name>
          <t>Many mobile and desktop computing platforms support inter-app
communication via URIs by allowing apps to register private-use URI
schemes (sometimes colloquially referred to as "custom URL schemes")
like <tt>com.example.app</tt>.  When the browser or another app attempts to
load a URI with a private-use URI scheme, the app that registered it
is launched to handle the request.</t>
          <t>Many environments that support private-use URI schemes do not provide
a mechanism to claim a scheme and prevent other parties from using
another application's scheme. As such, clients using private-use URI
schemes are vulnerable to potential attacks on their redirect URIs,
so this option should only be used if the previously mentioned more
secure options are not available.</t>
          <t>To perform an authorization request with a private-use URI
scheme redirect, the native app launches the browser with a standard
authorization request, but one where the redirect URI utilizes a
private-use URI scheme it registered with the operating system.</t>
          <t>When choosing a URI scheme to associate with the app, apps MUST use a
URI scheme based on a domain name under their control, expressed in
reverse order, as recommended by <xref section="3.8" sectionFormat="of" target="RFC7595"/> for
private-use URI schemes.</t>
          <t>For example, an app that controls the domain name <tt>app.example.com</tt>
can use <tt>com.example.app</tt> as their scheme.  Some authorization
servers assign client identifiers based on domain names, for example,
<tt>client1234.usercontent.example.net</tt>, which can also be used as the
domain name for the scheme when reversed in the same manner.  A
scheme such as <tt>myapp</tt>, however, would not meet this requirement, as
it is not based on a domain name.</t>
          <t>When there are multiple apps by the same publisher, care must be
taken so that each scheme is unique within that group.  On platforms
that use app identifiers based on reverse-order domain names, those
identifiers can be reused as the private-use URI scheme for the OAuth
redirect to help avoid this problem.</t>
          <t>Following the requirements of <xref section="3.2" sectionFormat="of" target="RFC3986"/>, as there is
no naming authority for private-use URI scheme redirects, only a
single slash (<tt>/</tt>) appears after the scheme component.  A complete
example of a redirect URI utilizing a private-use URI scheme is:</t>
          <artwork><![CDATA[
com.example.app:/oauth2redirect/example-provider
]]></artwork>
          <t>When the authorization server completes the request, it redirects to
the client's redirect URI as it would normally.  As the
redirect URI uses a private-use URI scheme, it results in the
operating system launching the native app, passing in the URI as a
launch parameter.  Then, the native app uses normal processing for
the authorization response.</t>
        </section>
      </section>
      <section anchor="security-considerations-in-native-apps">
        <name>Security Considerations in Native Apps</name>
        <section anchor="native-apps-embedded-user-agents">
          <name>Embedded User Agents in Native Apps</name>
          <t>Embedded user agents are a technically possible method for authorizing native
apps.  These embedded user agents are unsafe for use by third parties
to the authorization server by definition, as the app that hosts the
embedded user agent can access the user's full authentication
credentials, not just the OAuth authorization grant that was intended
for the app. They are also typically sandboxed by the operating system
and mechanisms such as WebAuthn that rely on the web origin are disabled.</t>
          <t>In typical web-view-based implementations of embedded user agents,
the host application can record every keystroke entered in the login
form to capture usernames and passwords, automatically submit forms
to bypass user consent, and copy session cookies and use them to
perform authenticated actions as the user.</t>
          <t>Even when used by trusted apps belonging to the same party as the
authorization server, embedded user agents violate the principle of
least privilege by having access to more powerful credentials than
they need, potentially increasing the attack surface.</t>
          <t>Encouraging users to enter credentials in an embedded user agent
without the usual address bar and visible certificate validation
features that browsers have makes it impossible for the user to know
if they are signing in to the legitimate site; even when they are, it
trains them that it's OK to enter credentials without validating the
site first.</t>
          <t>Aside from the security concerns, embedded user agents do not share
the authentication state with other apps or the browser, requiring
the user to log in for every authorization request, which is often
considered an inferior user experience.</t>
        </section>
        <section anchor="fake-external-user-agents-in-native-apps">
          <name>Fake External User-Agents in Native Apps</name>
          <t>The native app that is initiating the authorization request has a
large degree of control over the user interface and can potentially
present a fake external user agent, that is, an embedded user agent
made to appear as an external user agent.</t>
          <t>When all good actors are using external user agents, the advantage is
that it is possible for security experts to detect bad actors, as
anyone faking an external user agent is provably bad.  On the other
hand, if good and bad actors alike are using embedded user agents,
bad actors don't need to fake anything, making them harder to detect.
Once a malicious app is detected, it may be possible to use this
knowledge to blacklist the app's signature in malware scanning
software, take removal action (in the case of apps distributed by app
stores) and other steps to reduce the impact and spread of the
malicious app.</t>
          <t>Authorization servers can also directly protect against fake external
user agents by requiring an authentication factor only available to
true external user agents.</t>
          <t>Users who are particularly concerned about their security when using
in-app browser tabs may also take the additional step of opening the
request in the full browser from the in-app browser tab and complete
the authorization there, as most implementations of the in-app
browser tab pattern offer such functionality.</t>
        </section>
        <section anchor="malicious-external-user-agents-in-native-apps">
          <name>Malicious External User-Agents in Native Apps</name>
          <t>If a malicious app is able to configure itself as the default handler
for <tt>https</tt> scheme URIs in the operating system, it will be able to
intercept authorization requests that use the default browser and
abuse this position of trust for malicious ends such as phishing the
user.</t>
          <t>This attack is not confined to OAuth; a malicious app configured in
this way would present a general and ongoing risk to the user beyond
OAuth usage by native apps.  Many operating systems mitigate this
issue by requiring an explicit user action to change the default
handler for <tt>http</tt> and <tt>https</tt> scheme URIs.</t>
        </section>
        <section anchor="loopback-native-apps">
          <name>Loopback Redirect Considerations in Native Apps</name>
          <t>Loopback interface redirect URIs MAY use the <tt>http</tt> scheme (i.e., without
TLS).  This is acceptable for loopback
interface redirect URIs as the HTTP request never leaves the device.</t>
          <t>Clients SHOULD open the network port only when starting the
authorization request and close it once the response is returned.</t>
          <t>Clients SHOULD listen on the loopback network interface only, in
order to avoid interference by other network actors.</t>
          <t>Clients SHOULD use loopback IP literals rather than the string <tt>localhost</tt>
as described in <xref target="loopback-interface-redirection"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="browser-based-apps">
      <name>Browser-Based Apps</name>
      <t>Browser-based apps are clients that run in a web browser, typically
written in JavaScript, also known as "single-page apps". These types of apps
have particular security considerations similar to native apps.</t>
      <t>TODO: Bring in the normative text of the browser-based apps BCP when it is finalized.</t>
    </section>
    <section anchor="oauth-2-0-differences">
      <name>Differences from OAuth 2.0</name>
      <t>This draft consolidates the functionality in OAuth 2.0 <xref target="RFC6749"/>,
OAuth 2.0 for Native Apps <xref target="RFC8252"/>,
Proof Key for Code Exchange <xref target="RFC7636"/>,
OAuth 2.0 for Browser-Based Apps <xref target="I-D.ietf-oauth-browser-based-apps"/>,
OAuth Security Best Current Practice <xref target="RFC9700"/>,
and Bearer Token Usage <xref target="RFC6750"/>.</t>
      <t>Where a later draft updates or obsoletes functionality found in the original
<xref target="RFC6749"/>, that functionality in this draft is updated with the normative
changes described in a later draft, or removed entirely.</t>
      <t>A non-normative list of changes from OAuth 2.0 is listed below:</t>
      <ul spacing="normal">
        <li>
          <t>The authorization code grant is extended with the functionality from PKCE <xref target="RFC7636"/>
such that the default method of using the authorization code grant according
to this specification requires the addition of the PKCE parameters</t>
        </li>
        <li>
          <t>Redirect URIs must be compared using exact string matching
as per <xref section="4.1.3" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>The Implicit grant (<tt>response_type=token</tt>) is omitted from this specification
as per <xref section="2.1.2" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>The Resource Owner Password Credentials grant is omitted from this specification
as per <xref section="2.4" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>Bearer token usage omits the use of bearer tokens in the query string of URIs
as per <xref section="4.3.2" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>Refresh tokens for public clients must either be sender-constrained or one-time use
as per <xref section="4.14.2" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>The token endpoint request containing an authorization code no longer contains
the <tt>redirect_uri</tt> parameter</t>
        </li>
        <li>
          <t>Authorization servers must support client credentials in the request body</t>
        </li>
      </ul>
      <section anchor="removal-of-the-oauth-20-implicit-grant">
        <name>Removal of the OAuth 2.0 Implicit grant</name>
        <t>The OAuth 2.0 Implicit grant is omitted from OAuth 2.1 as it was deprecated in
<xref target="RFC9700"/>.</t>
        <t>The intent of removing the Implicit grant is to no longer issue access tokens
in the authorization response, as such tokens are vulnerable to leakage
and injection, and are unable to be sender-constrained to a client.
This behavior was indicated by clients using the <tt>response_type=token</tt> parameter.
This value for the <tt>response_type</tt> parameter is no longer defined in OAuth 2.1.</t>
        <t>Removal of <tt>response_type=token</tt> does not have an effect on other extension
response types returning other artifacts from the authorization endpoint,
for example, <tt>response_type=id_token</tt> defined by <xref target="OpenID"/>.</t>
      </section>
      <section anchor="redirect-uri-in-token-request">
        <name>Redirect URI Parameter in Token Request</name>
        <t>In OAuth 2.0, the request to the token endpoint in the authorization code flow (<xref section="4.1.3" sectionFormat="of" target="RFC6749"/>) contains an optional <tt>redirect_uri</tt> parameter. The parameter was intended to prevent an authorization code injection attack, and was required if the <tt>redirect_uri</tt> parameter was sent in the original authorization request. The authorization request only required the <tt>redirect_uri</tt> parameter if multiple redirect URIs were registered to the specific client. However, in practice, many authorization server implementations required the <tt>redirect_uri</tt> parameter in the authorization request even if only one was registered, leading the <tt>redirect_uri</tt> parameter to be required at the token endpoint as well.</t>
        <t>In OAuth 2.1, authorization code injection is prevented by the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters, making the inclusion of the <tt>redirect_uri</tt> parameter serve no purpose in the token request. As such, it has been removed.</t>
        <t>For backwards compatibility of an authorization server wishing to support both OAuth 2.0 and OAuth 2.1 clients, the authorization server MUST allow clients to send the <tt>redirect_uri</tt> parameter in the token request (<xref target="code-token-extension"/>), and MUST enforce the parameter as described in <xref target="RFC6749"/>. The authorization server can use the <tt>client_id</tt> in the request to determine whether to enforce this behavior for the specific client that it knows will be using the older OAuth 2.0 behavior.</t>
        <t>A client following only the OAuth 2.1 recommendations will not send the <tt>redirect_uri</tt> in the token request, and therefore will not be compatible with an authorization server that expects the parameter in the token request.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document does not require any IANA actions.</t>
      <t>All referenced registries are defined by <xref target="RFC6749"/> and related documents that this
work is based upon. No changes to those registries are required by this specification.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC3629" target="https://www.rfc-editor.org/info/rfc3629" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3629.xml">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau"/>
            <date month="November" year="2003"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC4949" target="https://www.rfc-editor.org/info/rfc4949" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4949.xml">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author fullname="R. Shirey" initials="R." surname="Shirey"/>
            <date month="August" year="2007"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="FYI" value="36"/>
          <seriesInfo name="RFC" value="4949"/>
          <seriesInfo name="DOI" value="10.17487/RFC4949"/>
        </reference>
        <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <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="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <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="RFC7235" target="https://www.rfc-editor.org/info/rfc7235" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7235.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems. This document defines the HTTP Authentication framework.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7235"/>
          <seriesInfo name="DOI" value="10.17487/RFC7235"/>
        </reference>
        <reference anchor="RFC7521" target="https://www.rfc-editor.org/info/rfc7521" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7521.xml">
          <front>
            <title>Assertion Framework for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="Y. Goland" initials="Y." surname="Goland"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification provides a framework for the use of assertions with OAuth 2.0 in the form of a new client authentication mechanism and a new authorization grant type. Mechanisms are specified for transporting assertions during interactions with a token endpoint; general processing rules are also specified.</t>
              <t>The intent of this specification is to provide a common framework for OAuth 2.0 to interwork with other identity systems using assertions and to provide alternative client authentication mechanisms.</t>
              <t>Note that this specification only defines abstract message flows and processing rules. In order to be implementable, companion specifications are necessary to provide the corresponding concrete instantiations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7521"/>
          <seriesInfo name="DOI" value="10.17487/RFC7521"/>
        </reference>
        <reference anchor="RFC7523" target="https://www.rfc-editor.org/info/rfc7523" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7523.xml">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification defines the use of a JSON Web Token (JWT) Bearer Token as a means for requesting an OAuth 2.0 access token as well as for client authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7523"/>
          <seriesInfo name="DOI" value="10.17487/RFC7523"/>
        </reference>
        <reference anchor="RFC7595" target="https://www.rfc-editor.org/info/rfc7595" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7595.xml">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes. It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <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>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <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="RFC8259" target="https://www.rfc-editor.org/info/rfc8259" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8259.xml">
          <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="RFC8446" target="https://www.rfc-editor.org/info/rfc8446" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8446.xml">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9110" target="https://www.rfc-editor.org/info/rfc9110" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9110.xml">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9111" target="https://www.rfc-editor.org/info/rfc9111" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9111.xml">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="RFC9207" target="https://www.rfc-editor.org/info/rfc9207" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9207.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Issuer Identification</title>
            <author fullname="K. Meyer zu Selhausen" initials="K." surname="Meyer zu Selhausen"/>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document specifies a new parameter called iss. This parameter is used to explicitly include the issuer identifier of the authorization server in the authorization response of an OAuth authorization flow. The iss parameter serves as an effective countermeasure to "mix-up attacks".</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9207"/>
          <seriesInfo name="DOI" value="10.17487/RFC9207"/>
        </reference>
        <reference anchor="RFC9700" target="https://www.rfc-editor.org/info/rfc9700" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9700.xml">
          <front>
            <title>Best Current Practice for OAuth 2.0 Security</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="A. Labunets" initials="A." surname="Labunets"/>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <date month="January" year="2025"/>
            <abstract>
              <t>This document describes best current security practice for OAuth 2.0. It updates and extends the threat model and security advice given in RFCs 6749, 6750, and 6819 to incorporate practical experiences gathered since OAuth 2.0 was published and covers new threats relevant due to the broader application of OAuth 2.0. Further, it deprecates some modes of operation that are deemed less secure or even insecure.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="240"/>
          <seriesInfo name="RFC" value="9700"/>
          <seriesInfo name="DOI" value="10.17487/RFC9700"/>
        </reference>
        <reference anchor="BCP195">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS)</title>
            <author initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date year="2015"/>
          </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="WHATWG.URL" target="https://url.spec.whatwg.org/">
          <front>
            <title>URL</title>
            <author initials="" surname="WHATWG">
              <organization/>
            </author>
            <date year="2022" month="May"/>
          </front>
        </reference>
        <reference anchor="WHATWG.CORS" target="https://fetch.spec.whatwg.org/#http-cors-protocol">
          <front>
            <title>Fetch Standard: CORS protocol</title>
            <author initials="" surname="WHATWG">
              <organization/>
            </author>
            <date year="2023" month="June"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-xml-20081126" target="https://www.w3.org/TR/REC-xml/REC-xml-20081126.xml">
          <front>
            <title>Extensible Markup Language</title>
            <author initials="T." surname="Bray">
              <organization/>
            </author>
            <author initials="J." surname="Paoli">
              <organization/>
            </author>
            <author initials="C. M." surname="Sperberg-McQueen">
              <organization/>
            </author>
            <author initials="E." surname="Maler">
              <organization/>
            </author>
            <author initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date year="2008" month="November"/>
          </front>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <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="RFC2617" target="https://www.rfc-editor.org/info/rfc2617" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2617.xml">
          <front>
            <title>HTTP Authentication: Basic and Digest Access Authentication</title>
            <author fullname="J. Franks" initials="J." surname="Franks"/>
            <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker"/>
            <author fullname="J. Hostetler" initials="J." surname="Hostetler"/>
            <author fullname="S. Lawrence" initials="S." surname="Lawrence"/>
            <author fullname="P. Leach" initials="P." surname="Leach"/>
            <author fullname="A. Luotonen" initials="A." surname="Luotonen"/>
            <author fullname="L. Stewart" initials="L." surname="Stewart"/>
            <date month="June" year="1999"/>
            <abstract>
              <t>This document provides the specification for HTTP's authentication framework, the original Basic authentication scheme and a scheme based on cryptographic hashes, referred to as "Digest Access Authentication". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2617"/>
          <seriesInfo name="DOI" value="10.17487/RFC2617"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6265" target="https://www.rfc-editor.org/info/rfc6265" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6265.xml">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <author fullname="T. Lodderstedt" initials="T." role="editor" surname="Lodderstedt"/>
            <author fullname="M. McGloin" initials="M." surname="McGloin"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6819"/>
          <seriesInfo name="DOI" value="10.17487/RFC6819"/>
        </reference>
        <reference anchor="RFC7009" target="https://www.rfc-editor.org/info/rfc7009" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7009.xml">
          <front>
            <title>OAuth 2.0 Token Revocation</title>
            <author fullname="T. Lodderstedt" initials="T." role="editor" surname="Lodderstedt"/>
            <author fullname="S. Dronia" initials="S." surname="Dronia"/>
            <author fullname="M. Scurtescu" initials="M." surname="Scurtescu"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document proposes an additional endpoint for OAuth authorization servers, which allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed. This allows the authorization server to clean up security credentials. A revocation request will invalidate the actual token and, if applicable, other tokens based on the same authorization grant.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7009"/>
          <seriesInfo name="DOI" value="10.17487/RFC7009"/>
        </reference>
        <reference anchor="RFC7519" target="https://www.rfc-editor.org/info/rfc7519" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7519.xml">
          <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" target="https://www.rfc-editor.org/info/rfc7591" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7591.xml">
          <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="RFC7592" target="https://www.rfc-editor.org/info/rfc7592" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7592.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Management 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"/>
            <date month="July" year="2015"/>
            <abstract>
              <t>This specification defines methods for management of OAuth 2.0 dynamic client registrations for use cases in which the properties of a registered client may need to be changed during the lifetime of the client. Not all authorization servers supporting dynamic client registration will support these management methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7592"/>
          <seriesInfo name="DOI" value="10.17487/RFC7592"/>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <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="RFC7662" target="https://www.rfc-editor.org/info/rfc7662" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7662.xml">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="RFC8414" target="https://www.rfc-editor.org/info/rfc8414" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8414.xml">
          <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" target="https://www.rfc-editor.org/info/rfc8628" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8628.xml">
          <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="RFC8705" target="https://www.rfc-editor.org/info/rfc8705" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8705.xml">
          <front>
            <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates. OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8705"/>
          <seriesInfo name="DOI" value="10.17487/RFC8705"/>
        </reference>
        <reference anchor="RFC8707" target="https://www.rfc-editor.org/info/rfc8707" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8707.xml">
          <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="RFC9068" target="https://www.rfc-editor.org/info/rfc9068" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9068.xml">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens</title>
            <author fullname="V. Bertocci" initials="V." surname="Bertocci"/>
            <date month="October" year="2021"/>
            <abstract>
              <t>This specification defines a profile for issuing OAuth 2.0 access tokens in JSON Web Token (JWT) format. Authorization servers and resource servers from different vendors can leverage this profile to issue and consume access tokens in an interoperable manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9068"/>
          <seriesInfo name="DOI" value="10.17487/RFC9068"/>
        </reference>
        <reference anchor="RFC9126" target="https://www.rfc-editor.org/info/rfc9126" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9126.xml">
          <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="RFC9396" target="https://www.rfc-editor.org/info/rfc9396" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9396.xml">
          <front>
            <title>OAuth 2.0 Rich Authorization Requests</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="J. Richer" initials="J." surname="Richer"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <date month="May" year="2023"/>
            <abstract>
              <t>This document specifies a new parameter authorization_details that is used to carry fine-grained authorization data in OAuth messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9396"/>
          <seriesInfo name="DOI" value="10.17487/RFC9396"/>
        </reference>
        <reference anchor="RFC9449" target="https://www.rfc-editor.org/info/rfc9449" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9449.xml">
          <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" target="https://www.rfc-editor.org/info/rfc9470" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9470.xml">
          <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.bradley-oauth-jwt-encoded-state" target="https://datatracker.ietf.org/doc/html/draft-bradley-oauth-jwt-encoded-state-09" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.bradley-oauth-jwt-encoded-state.xml">
          <front>
            <title>Encoding claims in the OAuth 2 state parameter using a JWT</title>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Torsten Lodderstedt" initials="T." surname="Lodderstedt">
              <organization>YES.com AG</organization>
            </author>
            <author fullname="Hans Zandbelt" initials="H." surname="Zandbelt">
              <organization>ZmartZone IAM</organization>
            </author>
            <date day="4" month="November" year="2018"/>
            <abstract>
              <t>This draft provides a method for a client to encode one or more elements encoding information about the session into the OAuth 2 "state" parameter.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bradley-oauth-jwt-encoded-state-09"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-browser-based-apps-25" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-browser-based-apps.xml">
          <front>
            <title>OAuth 2.0 for Browser-Based Applications</title>
            <author fullname="Aaron Parecki" initials="A." surname="Parecki">
              <organization>Okta</organization>
            </author>
            <author fullname="Philippe De Ryck" initials="P." surname="De Ryck">
              <organization>Pragmatic Web Security</organization>
            </author>
            <author fullname="David Waite" initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <date day="3" month="July" year="2025"/>
            <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-25"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-rfc7523bis" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-rfc7523bis-03" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-rfc7523bis.xml">
          <front>
            <title>Updates to OAuth 2.0 JSON Web Token (JWT) Client Authentication and Assertion-Based Authorization Grants</title>
            <author fullname="Michael B. Jones" initials="M. B." surname="Jones">
              <organization>Self-Issued Consulting</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Chuck Mortimore" initials="C." surname="Mortimore">
              <organization>Disney</organization>
            </author>
            <author fullname="Filip Skokan" initials="F." surname="Skokan">
              <organization>Okta</organization>
            </author>
            <date day="7" month="October" year="2025"/>
            <abstract>
              <t>This specification updates the requirements for audience values in OAuth 2.0 Client Assertion Authentication and Assertion-based Authorization Grants to address a security vulnerability identified in the previous requirements for those audience values in multiple OAuth 2.0 specifications.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rfc7523bis-03"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-attestation-based-client-auth" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-attestation-based-client-auth-07" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-attestation-based-client-auth.xml">
          <front>
            <title>OAuth 2.0 Attestation-Based Client Authentication</title>
            <author fullname="Tobias Looker" initials="T." surname="Looker">
              <organization>MATTR</organization>
            </author>
            <author fullname="Paul Bastian" initials="P." surname="Bastian">
              <organization>Bundesdruckerei</organization>
            </author>
            <author fullname="Christian Bormann" initials="C." surname="Bormann">
              <organization>SPRIND</organization>
            </author>
            <date day="15" month="September" year="2025"/>
            <abstract>
              <t>This specification defines an extension to the OAuth 2 protocol as defined in [RFC6749] which enables a Client Instance to include a key-bound attestation in interactions with an Authorization Server or a Resource Server. This new method enables Client Instances involved in a client deployment that is traditionally viewed as a public client, to be able to utilize this key-bound attestation to authenticate.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-attestation-based-client-auth-07"/>
        </reference>
        <reference anchor="OpenID" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0 incorporating errata set 2</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="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Discovery" target="https://openid.net/specs/openid-connect-discovery-1_0.html">
          <front>
            <title>OpenID Connect Discovery 1.0 incorporating errata set 2</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="OMAP" target="https://www.svta.org/product/online-multimedia-authorization-protocol/">
          <front>
            <title>Online Multimedia Authorization Protocol: An Industry Standard for Authorized Access to Internet Multimedia Resources</title>
            <author initials="J." surname="Huff">
              <organization/>
            </author>
            <author initials="D." surname="Schlacht">
              <organization/>
            </author>
            <author initials="A." surname="Nadalin">
              <organization/>
            </author>
            <author initials="J." surname="Simmons">
              <organization/>
            </author>
            <author initials="P." surname="Rosenberg">
              <organization/>
            </author>
            <author initials="P." surname="Madsen">
              <organization/>
            </author>
            <author initials="T." surname="Ace">
              <organization/>
            </author>
            <author initials="C." surname="Rickelton-Abdi">
              <organization/>
            </author>
            <author initials="B." surname="Boyer">
              <organization/>
            </author>
            <date year="2012" month="August"/>
          </front>
        </reference>
        <reference anchor="NIST800-63" target="http://csrc.nist.gov/publications/">
          <front>
            <title>NIST Special Publication 800-63-1, INFORMATION SECURITY</title>
            <author initials="W." surname="Burr">
              <organization/>
            </author>
            <author initials="D." surname="Dodson">
              <organization/>
            </author>
            <author initials="E." surname="Newton">
              <organization/>
            </author>
            <author initials="R." surname="Perlner">
              <organization/>
            </author>
            <author initials="T." surname="Polk">
              <organization/>
            </author>
            <author initials="S." surname="Gupta">
              <organization/>
            </author>
            <author initials="E." surname="Nabbus">
              <organization/>
            </author>
            <date year="2011" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Messages" target="http://openid.net/specs/openid-connect-messages-1_0.html">
          <front>
            <title>OpenID Connect Messages 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>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2012" month="June"/>
          </front>
        </reference>
        <reference anchor="owasp_redir" target="https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html">
          <front>
            <title>OWASP Cheat Sheet Series - Unvalidated Redirects and Forwards</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="CSP-2" target="https://www.w3.org/TR/CSP2">
          <front>
            <title>Content Security Policy Level 2</title>
            <author>
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-html401-19991224" target="https://www.w3.org/TR/1999/REC-html401-19991224/" xml:base="https://bib.ietf.org/public/rfc/bibxml4/reference.W3C.REC-html401-19991224.xml">
          <front>
            <title>HTML 4.01 Specification</title>
            <author fullname="Arnaud Le Hors" role="editor"/>
            <author fullname="Dave Raggett" role="editor"/>
            <author fullname="Ian Jacobs" role="editor"/>
            <date day="24" month="December" year="1999"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-html401-19991224"/>
          <seriesInfo name="W3C" value="REC-html401-19991224"/>
        </reference>
      </references>
    </references>
    <?line 3673?>

<section anchor="augmented-backus-naur-form-abnf-syntax">
      <name>Augmented Backus-Naur Form (ABNF) Syntax</name>
      <t>This section provides Augmented Backus-Naur Form (ABNF) syntax
descriptions for the elements defined in this specification using the
notation of <xref target="RFC5234"/>.  The ABNF below is defined in terms of Unicode
code points <xref target="W3C.REC-xml-20081126"/>; these characters are typically
encoded in UTF-8.  Elements are presented in the order first defined.</t>
      <t>Some of the definitions that follow use the "URI-reference"
definition from <xref target="RFC3986"/>.</t>
      <t>Some of the definitions that follow use these common definitions:</t>
      <artwork><![CDATA[
VSCHAR     = %x20-7E
NQCHAR     = %x21 / %x23-5B / %x5D-7E
NQSCHAR    = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      <section anchor="clientid-syntax">
        <name>"client_id" Syntax</name>
        <t>The <tt>client_id</tt> element is defined in <xref target="client-secret"/>:</t>
        <artwork><![CDATA[
client-id     = *VSCHAR
]]></artwork>
      </section>
      <section anchor="clientsecret-syntax">
        <name>"client_secret" Syntax</name>
        <t>The <tt>client_secret</tt> element is defined in <xref target="client-secret"/>:</t>
        <artwork><![CDATA[
client-secret = *VSCHAR
]]></artwork>
      </section>
      <section anchor="responsetype-syntax">
        <name>"response_type" Syntax</name>
        <t>The <tt>response_type</tt> element is defined in <xref target="authorization-request"/> and <xref target="new-response-types"/>:</t>
        <artwork><![CDATA[
response-type = response-name *( SP response-name )
response-name = 1*response-char
response-char = "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="scope-syntax">
        <name>"scope" Syntax</name>
        <t>The <tt>scope</tt> element is defined in <xref target="access-token-scope"/>:</t>
        <artwork><![CDATA[
 scope       = scope-token *( SP scope-token )
 scope-token = 1*NQCHAR
]]></artwork>
      </section>
      <section anchor="state-syntax">
        <name>"state" Syntax</name>
        <t>The <tt>state</tt> element is defined in <xref target="authorization-request"/>, <xref target="authorization-response"/>, and <xref target="authorization-code-error-response"/>:</t>
        <artwork><![CDATA[
 state      = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="redirecturi-syntax">
        <name>"redirect_uri" Syntax</name>
        <t>The <tt>redirect_uri</tt> element is defined in <xref target="authorization-request"/>, and <xref target="code-token-extension"/>:</t>
        <artwork><![CDATA[
 redirect-uri      = URI-reference
]]></artwork>
      </section>
      <section anchor="error-syntax">
        <name>"error" Syntax</name>
        <t>The <tt>error</tt> element is defined in Sections <xref target="authorization-code-error-response"/>, <xref target="token-error-response"/>,
7.2, and 8.5:</t>
        <artwork><![CDATA[
 error             = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="error-description-syntax">
        <name>"error_description" Syntax</name>
        <t>The <tt>error_description</tt> element is defined in Sections <xref target="authorization-code-error-response"/>,
<xref target="token-error-response"/>, and <xref target="error-response"/>:</t>
        <artwork><![CDATA[
 error-description = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="error-uri-syntax">
        <name>"error_uri" Syntax</name>
        <t>The <tt>error_uri</tt> element is defined in Sections <xref target="authorization-code-error-response"/>, <xref target="token-error-response"/>,
and 7.2:</t>
        <artwork><![CDATA[
 error-uri         = URI-reference
]]></artwork>
      </section>
      <section anchor="granttype-syntax">
        <name>"grant_type" Syntax</name>
        <t>The <tt>grant_type</tt> element is defined in Section <xref target="token-request"/>:</t>
        <artwork><![CDATA[
 grant-type = grant-name / URI-reference
 grant-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="code-syntax">
        <name>"code" Syntax</name>
        <t>The <tt>code</tt> element is defined in <xref target="code-token-extension"/>:</t>
        <artwork><![CDATA[
 code       = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="accesstoken-syntax">
        <name>"access_token" Syntax</name>
        <t>The <tt>access_token</tt> element is defined in <xref target="token-response"/>:</t>
        <artwork><![CDATA[
 access-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="tokentype-syntax">
        <name>"token_type" Syntax</name>
        <t>The <tt>token_type</tt> element is defined in <xref target="token-response"/>, and <xref target="defining-access-token-types"/>:</t>
        <artwork><![CDATA[
 token-type = type-name / URI-reference
 type-name  = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="expiresin-syntax">
        <name>"expires_in" Syntax</name>
        <t>The <tt>expires_in</tt> element is defined in <xref target="token-response"/>:</t>
        <artwork><![CDATA[
 expires-in = 1*DIGIT
]]></artwork>
      </section>
      <section anchor="refreshtoken-syntax">
        <name>"refresh_token" Syntax</name>
        <t>The <tt>refresh_token</tt> element is defined in <xref target="token-response"/> and <xref target="refreshing-an-access-token"/>:</t>
        <artwork><![CDATA[
 refresh-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="endpoint-parameter-syntax">
        <name>Endpoint Parameter Syntax</name>
        <t>The syntax for new endpoint parameters is defined in <xref target="defining-new-endpoint-parameters"/>:</t>
        <artwork><![CDATA[
 param-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="codeverifier-syntax">
        <name>"code_verifier" Syntax</name>
        <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
        <artwork><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
      <section anchor="codechallenge-syntax">
        <name>"code_challenge" Syntax</name>
        <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
        <artwork><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
    </section>
    <section anchor="application-x-www-form-urlencoded">
      <name>Use of application/x-www-form-urlencoded Media Type</name>
      <t>At the time of publication of <xref target="RFC6749"/>, the
<tt>application/x-www-form-urlencoded</tt> media type was defined in
Section 17.13.4 of <xref target="W3C.REC-html401-19991224"/> but not registered in
the IANA MIME Media Types registry
(<eref target="http://www.iana.org/assignments/media-types">http://www.iana.org/assignments/media-types</eref>).  Furthermore, that
definition is incomplete, as it does not consider non-US-ASCII
characters.</t>
      <t>To address this shortcoming when generating contents using this media
type, names and values MUST be encoded using the UTF-8 character
encoding scheme <xref target="RFC3629"/> first; the resulting octet sequence then
needs to be further encoded using the escaping rules defined in
<xref target="W3C.REC-html401-19991224"/>.</t>
      <t>When parsing data from a content using this media type, the names and
values resulting from reversing the name/value encoding consequently
need to be treated as octet sequences, to be decoded using the UTF-8
character encoding scheme.</t>
      <t>For example, the value consisting of the six Unicode code points
(1) U+0020 (SPACE), (2) U+0025 (PERCENT SIGN),
(3) U+0026 (AMPERSAND), (4) U+002B (PLUS SIGN),
(5) U+00A3 (POUND SIGN), and (6) U+20AC (EURO SIGN) would be encoded
into the octet sequence below (using hexadecimal notation):</t>
      <artwork><![CDATA[
20 25 26 2B C2 A3 E2 82 AC
]]></artwork>
      <t>and then represented in the content as:</t>
      <artwork><![CDATA[
+%25%26%2B%C2%A3%E2%82%AC
]]></artwork>
    </section>
    <section anchor="serializations">
      <name>Serializations</name>
      <t>Various messages in this specification are serialized using one of the methods described below. This section describes the syntax of these serialization methods; other sections describe when they can and must be used. Note that not all methods can be used for all messages.</t>
      <section anchor="query-string-serialization">
        <name>Query String Serialization</name>
        <t>In order to serialize the parameters using the Query String Serialization, the Client constructs the string by adding the parameters and values to the query component of a URL using the application/x-www-form-urlencoded format as defined by <xref target="WHATWG.URL"/>. Query String Serialization is typically used in HTTP GET requests.</t>
      </section>
      <section anchor="form-serialization">
        <name>Form-Encoded Serialization</name>
        <t>Parameters and their values are Form Serialized by adding the parameter names and values to the entity body of the HTTP request using the application/x-www-form-urlencoded format as defined by <xref target="application-x-www-form-urlencoded"/>. Form Serialization is typically used in HTTP POST requests.</t>
      </section>
      <section anchor="json-serialization">
        <name>JSON Serialization</name>
        <t>The parameters are serialized into a JSON <xref target="RFC8259"/> object structure by adding each parameter at the highest structure level. Parameter names and string values are represented as JSON strings. Numerical values are represented as JSON numbers. Boolean values are represented as JSON booleans. Omitted parameters and parameters with no value SHOULD be omitted from the object and not represented by a JSON null value, unless otherwise specified. A parameter MAY have a JSON object or a JSON array as its value. The order of parameters does not matter and can vary.</t>
      </section>
    </section>
    <section anchor="extensions">
      <name>Extensions</name>
      <t>Below is a list of well-established extensions at the time of publication:</t>
      <ul spacing="normal">
        <li>
          <t><xref target="RFC7009"/>: Token Revocation
          </t>
          <ul spacing="normal">
            <li>
              <t>The Token Revocation extension defines a mechanism for clients to indicate to the authorization server that an access token is no longer needed.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7591"/>: Dynamic Client Registration
          </t>
          <ul spacing="normal">
            <li>
              <t>Dynamic Client Registration provides a mechanism for programmatically registering clients with an authorization server.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7662"/>: Token Introspection
          </t>
          <ul spacing="normal">
            <li>
              <t>The Token Introspection extension defines a mechanism for resource servers to obtain information about access tokens.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8414"/>: Authorization Server Metadata
          </t>
          <ul spacing="normal">
            <li>
              <t>Authorization Server Metadata (also known as OAuth Discovery) defines an endpoint clients can use to look up the information needed to interact with a particular OAuth server, such as the location of the authorization and token endpoints and the supported grant types.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8628"/>: OAuth 2.0 Device Authorization Grant
          </t>
          <ul spacing="normal">
            <li>
              <t>The Device Authorization Grant (formerly known as the Device Flow) is an extension that enables devices with no browser or limited input capability to obtain an access token. This is commonly used by smart TV apps, or devices like hardware video encoders that can stream video to a streaming video service.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8705"/>: Mutual TLS
          </t>
          <ul spacing="normal">
            <li>
              <t>Mutual TLS describes a mechanism of binding tokens to the clients they were issued to, as well as a client authentication mechanism, via TLS certificate authentication.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8707"/>: Resource Indicators
          </t>
          <ul spacing="normal">
            <li>
              <t>Provides a way for the client to explicitly signal to the authorization server where it intends to use the access token it is requesting.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9068"/>: JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens
          </t>
          <ul spacing="normal">
            <li>
              <t>This specification defines a profile for issuing OAuth access tokens in JSON Web Token (JWT) format.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9126"/>: Pushed Authorization Requests
          </t>
          <ul spacing="normal">
            <li>
              <t>The Pushed Authorization Requests extension describes a technique of initiating an OAuth flow from the back channel, providing better security and more flexibility for building complex authorization requests.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9207"/>: Authorization Server Issuer Identification
          </t>
          <ul spacing="normal">
            <li>
              <t>The <tt>iss</tt> parameter in the authorization response indicates the identity of the authorization server to prevent mix-up attacks in the client.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9396"/>: Rich Authorization Requests
          </t>
          <ul spacing="normal">
            <li>
              <t>Rich Authorization Requests specifies a new parameter <tt>authorization_details</tt> that is used to carry fine-grained authorization data in the OAuth authorization request.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9449"/>: Demonstrating Proof of Possession (DPoP)
          </t>
          <ul spacing="normal">
            <li>
              <t>DPoP describes a mechanism for sender-constraining OAuth 2.0 tokens via a proof-of-possession mechanism on the application level.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9470"/>: Step-Up Authentication Challenge Protocol
          </t>
          <ul spacing="normal">
            <li>
              <t>Step-Up Auth describes 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.</t>
            </li>
          </ul>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This specification is the work of the OAuth Working Group, and its starting point was based on the contents of the following specifications: OAuth 2.0 Authorization Framework (RFC 6749), OAuth 2.0 for Native Apps (RFC 8252), OAuth Security Best Current Practice, and OAuth 2.0 for Browser-Based Apps. The editors would like to thank everyone involved in the creation of those specifications upon which this is built.</t>
      <t>The editors would also like to thank the following individuals for their ideas, feedback, corrections, and wording that helped shape this version of the specification: Andrii Deinega, Bob Hamburg, Brian Campbell, Daniel Fett, Deng Chao, Emelia Smith, Falko, Filip Skokan, Joseph Heenan, Justin Richer, Karsten Meyer zu Selhausen, Michael Jones, Michael Peck, Roberto Polli, Tim Würtele and Vittorio Bertocci.</t>
      <t>Discussions around this specification have also occurred at the OAuth Security Workshop in 2021 and 2022. The authors thank the organizers of the workshop (Guido Schmitz, Steinar Noem, and Daniel Fett) for hosting an event that's conducive to collaboration and community input.</t>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-14</t>
      <ul spacing="normal">
        <li>
          <t>Editorial clarifications</t>
        </li>
        <li>
          <t>Corrected an instance of "relying party" vs "resource server"</t>
        </li>
        <li>
          <t>Add references to <tt>client_secret_post</tt> and <tt>client_secret_basic</tt> terms from RFC7591</t>
        </li>
        <li>
          <t>Replaced "sanitize" language with treating as untrusted input</t>
        </li>
        <li>
          <t>Clarified that native apps guidance applies primarily to mobile app platforms</t>
        </li>
        <li>
          <t>Clarify that there is no requirement that an AS supports public or confidential clients in particular</t>
        </li>
      </ul>
      <t>-13</t>
      <ul spacing="normal">
        <li>
          <t>Updated references to RFC 9700</t>
        </li>
        <li>
          <t>Updated and sorted list of OAuth extensions</t>
        </li>
        <li>
          <t>Updated references to link to section numbers</t>
        </li>
      </ul>
      <t>-12</t>
      <ul spacing="normal">
        <li>
          <t>Updated language around client registration to better reflect alternative registration methods such as those in use by OpenID Federation and open ecosystems</t>
        </li>
        <li>
          <t>Added DPoP and Step-Up Auth to appendix of extensions</t>
        </li>
        <li>
          <t>Updated reference for case insensitivity of auth scheme to HTTP instead of ABNF</t>
        </li>
        <li>
          <t>Corrected an instance of "relying party" vs "client"</t>
        </li>
        <li>
          <t>Moved <tt>client_id</tt> requirement to the individual grant types</t>
        </li>
        <li>
          <t>Consolidated the descriptions of serialization methods to the appendix</t>
        </li>
      </ul>
      <t>-11</t>
      <ul spacing="normal">
        <li>
          <t>Explicitly mention that Bearer is case insensitive</t>
        </li>
        <li>
          <t>Recommend against defining custom scopes that conflict with known scopes</t>
        </li>
        <li>
          <t>Change client credentials to be required to be supported in the request body to avoid HTTP Basic authentication encoding interop issues</t>
        </li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>
          <t>Clarify that the client id is an opaque string</t>
        </li>
        <li>
          <t>Extensions may define additional error codes on a resource request</t>
        </li>
        <li>
          <t>Improved formatting for error field definitions</t>
        </li>
        <li>
          <t>Moved and expanded "scope" definition to introduction section</t>
        </li>
        <li>
          <t>Split access token section into structure and request</t>
        </li>
        <li>
          <t>Renamed b64token to token68 for consistency with RFC7235</t>
        </li>
        <li>
          <t>Restored content from old appendix B about application/x-www-form-urlencoded</t>
        </li>
        <li>
          <t>Clarified that clients must not parse access tokens</t>
        </li>
        <li>
          <t>Expanded text around when <tt>redirect_uri</tt> parameter is required in the authorization request</t>
        </li>
        <li>
          <t>Changed "permissions" to "privileges" in refresh token section for consistency</t>
        </li>
        <li>
          <t>Consolidated authorization code flow security considerations</t>
        </li>
        <li>
          <t>Clarified authorization code reuse - an authorization code can only obtain an access token once</t>
        </li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>AS MUST NOT support CORS requests at authorization endpoint</t>
        </li>
        <li>
          <t>more detail on asymmetric client authentication</t>
        </li>
        <li>
          <t>sync CSRF description from security BCP</t>
        </li>
        <li>
          <t>update and move sender-constrained access tokens section</t>
        </li>
        <li>
          <t>sync client impersonating resource owner with security BCP</t>
        </li>
        <li>
          <t>add reference to authorization request from redirect URI registration section</t>
        </li>
        <li>
          <t>sync refresh rotation section from security BCP</t>
        </li>
        <li>
          <t>sync redirect URI matching text from security BCP</t>
        </li>
        <li>
          <t>updated references to RAR (RFC9396)</t>
        </li>
        <li>
          <t>clarifications on URIs</t>
        </li>
        <li>
          <t>removed redirect_uri from the token request</t>
        </li>
        <li>
          <t>expanded security considerations around code_verifier</t>
        </li>
        <li>
          <t>revised introduction section</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Updated acknowledgments</t>
        </li>
        <li>
          <t>Swap "by a trusted party" with "by an outside party" in client ID definition</t>
        </li>
        <li>
          <t>Replaced "verify the identity of the resource owner" with "authenticate"</t>
        </li>
        <li>
          <t>Clarified refresh token rotation to match RFC6819</t>
        </li>
        <li>
          <t>Added appendix to hold application/x-www-form-urlencoded examples</t>
        </li>
        <li>
          <t>Fixed references to entries in appendix</t>
        </li>
        <li>
          <t>Incorporated new "Phishing via AS" section from Security BCP</t>
        </li>
        <li>
          <t>Rephrase description of the motivation for client authentication</t>
        </li>
        <li>
          <t>Moved "scope" parameter in token request into specific grant types to match OAuth 2.0</t>
        </li>
        <li>
          <t>Updated Clickjacking and Open Redirection description from the latest version of the Security BCP</t>
        </li>
        <li>
          <t>Moved normative requirements out of authorization code security considerations section</t>
        </li>
        <li>
          <t>Security considerations clarifications, and removed a duplicate section</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>Removed "third party" from abstract</t>
        </li>
        <li>
          <t>Added MFA and passwordless as additional motiviations in introduction</t>
        </li>
        <li>
          <t>Mention PAR as one way redirect URI registration can happen</t>
        </li>
        <li>
          <t>Added a reference to requiring CORS headers on the token endpoint</t>
        </li>
        <li>
          <t>Updated reference to OMAP extension</t>
        </li>
        <li>
          <t>Fixed numbering in sequence diagram</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>Removed "credentialed client" term</t>
        </li>
        <li>
          <t>Simplified definition of "confidential" and "public" clients</t>
        </li>
        <li>
          <t>Incorporated the <tt>iss</tt> response parameter referencing RFC9207</t>
        </li>
        <li>
          <t>Added section on access token validation by the RS</t>
        </li>
        <li>
          <t>Removed requirement for authorization servers to support all 3 redirect methods for native apps</t>
        </li>
        <li>
          <t>Fixes for some references</t>
        </li>
        <li>
          <t>Updates HTTP references to RFC 9110</t>
        </li>
        <li>
          <t>Clarifies "authorization grant" term</t>
        </li>
        <li>
          <t>Clarifies client credential grant usage</t>
        </li>
        <li>
          <t>Clean up authorization code diagram</t>
        </li>
        <li>
          <t>Updated reference for application/x-www-form-urlencoded and removed outdated note about it not being in the IANA registry</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>Added a section about the removal of the implicit flow</t>
        </li>
        <li>
          <t>Moved many normative requirements from security considerations into the appropriate inline sections</t>
        </li>
        <li>
          <t>Reorganized and consolidated TLS language</t>
        </li>
        <li>
          <t>Require TLS on redirect URIs except for localhost/custom URL scheme</t>
        </li>
        <li>
          <t>Updated refresh token guidance to match security BCP</t>
        </li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>
          <t>Added explicit mention of not sending access tokens in URI query strings</t>
        </li>
        <li>
          <t>Clarifications on definition of client types</t>
        </li>
        <li>
          <t>Consolidated text around loopback vs localhost</t>
        </li>
        <li>
          <t>Editorial clarifications throughout the document</t>
        </li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>
          <t>refactoring to collect all the grant types under the same top-level header in section 4</t>
        </li>
        <li>
          <t>Better split normative and security consideration text into the appropriate places, both moving text that was really security considerations out of the main part of the document, as well as pulling normative requirements from the security considerations sections into the appropriate part of the main document</t>
        </li>
        <li>
          <t>Incorporated many of the published errata on RFC6749</t>
        </li>
        <li>
          <t>Updated references to various RFCs</t>
        </li>
        <li>
          <t>Editorial clarifications throughout the document</t>
        </li>
      </ul>
      <t>-02</t>
      <t>-01</t>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>initial revision</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9+XIbyZUv/H89RV12uJu0AYiLRC0ezQy1davdWkxSo9t2
zBULQIEsC0BhUAApWq37Bvcdvmf5Ir73+s6aeTIrC2S32547EcOwWyRQlevJ
k2f9nX6/n62q1bR8lJ9elPmbo/XqIt8f7OX4S72s/lqsqnqev1gWs/KqXn7M
xvVoDr8/ysfLYrLqV+Vq0q8LeLh/ud/f6+/dzbJqsXyUr5brZrW/u/twdz+7
On8kLb+HJqr5ef7tsl4vso9Xj/KX81W5nJer/jNsLxsVq0d5sxpnxbIsHuUn
5Wi9rFbXWbaoHmV5vqpHj/LrsoFfm3q5WpaTxv19PfN/ZgUNH1/p59UcPn02
yL8rluMVfJLn9fK8mMvcHuXfldPp//d/6Aue2rNq9NE8Xc6KagoThk8HF/jp
v57jJ4NRPfPtHw3ytzDm0cfKNHRULGHx7OfSVoFf/OuCv5CG4mG9+bgq6GNY
gUf5xWq1aB7duUNvhi/KCE4H+Q/1eFwum1UpI+dRnNb40bz1rYxlxV//69R/
PYANSYzo5O3xy9fPsmxeL2fw0WWJ63v84unB4f5D/fXhg0P59e7Du/rpvf2D
u/Lr4X336eH9e7vy6/39g3v66739Pf/rgfv1oT7wYO++NvZg/96+/1XbfXD3
ro7h4d7erv9V2324v3tff72/Sw88efp2j3sAIuPzsHVcwvrOyvmYpt/kk3rJ
BFnm75oyryf56bKYNwsgxPyH4rpcOnLNt09/ONnZotY8JeIP7dSPg/zkopxM
yqX99BgotJ7+1X70Fh4sqvmqfzQfL0v6BgYDY9vf3bsHf747OTp5+vJlOOyn
9bgc50+BUovRiga1yvv9/H5/WK3yo1m5rEbFPD9ZFTCxJTwIj9PUXs4nvK9A
snQqRxfF/Lzs5UevT17m//NgcDc1ISaxLdfua2qgmLoOGmisgbGtV+WWmcEe
EAr8+f67o9P33w7eHf8QTgI+4KdXxfK8XHn6Xy+ng2ZRjgZXF8Xq6nwAFHon
MSw5E9y86fZVcQ2Lt7/vu3765vgk7PtFuRpduPE/yvGJfLGsgfnU0/SoJvhK
a1xf4df9EZyvvr7+M4b6/Xpe4lgPcKwHTwfHz5/2P82mfWCqD/b29g/DQT//
BGe4qYbTEua4/LheAEnOz9fFeZke8dXV1eDqgIZ5enxH2r4T9zGAP7qHDBzn
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
+ZzNc1gTYIG4nG8uL4v/DetigDgP1QIA

-->

</rfc>
