<?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.3.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-13" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-13"/>
    <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="May" day="28"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 179?>

<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 189?>

<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"/>)
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 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>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>If the client is confidential, the authorization server MAY accept any
form of client authentication meeting its security requirements
(e.g., password, 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"/> and <xref target="RFC7523"/>
(in <xref target="OpenID"/> defined 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 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>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>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"/> 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
(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 per authorization request to protect against authorization code
injection and CSRF attacks. The client first generates this secret, which it can
use at the time of redeeming the authorization code 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 or RECOMMENDED (see <xref target="authorization_codes"/>).  Code challenge.</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 relying party or set of relying parties.</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="code-injection-and-input-validation">
        <name>Code Injection and Input Validation</name>
        <t>A code 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 sanitize (and validate when
possible) any value received -- in particular, the value 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 application, native mobile
application).  Native applications require special consideration
related to security, platform capabilities, and overall end-user
experience.</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 using a redirect URI
with a 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="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 secrets, native apps are
classified as public clients, as defined in <xref target="client-types"/>;
they 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 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 should not be treated as confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, it is NOT
RECOMMENDED for authorization servers to require client
authentication of public native apps clients using a shared secret,
as this serves little 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>
      </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 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.</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.13.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-24" 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="March" 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-24"/>
        </reference>
        <reference anchor="OpenID" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="OpenID.Discovery" target="https://openid.net/specs/openid-connect-discovery-1_0.html">
          <front>
            <title>OpenID Connect Discovery 1.0 incorporating errata set 1</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="2014" month="November"/>
          </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 3646?>

<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: Vittorio Bertocci, Michael Jones, Justin Richer, Daniel Fett, Brian Campbell, Joseph Heenan, Roberto Polli, Andrii Deinega, Falko, Michael Peck, Bob Hamburg, Deng Chao, Karsten Meyer zu Selhausen, Filip Skokan, and Tim Würtele.</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>-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+8dZFm1WD7KV8t1s9rf3X24u59d
nT+Slt9DE9X8PP92Wa8X2cerR/nL+apczstV/xm2l42K1aO8WY2zYlkWj/KT
crReVqvrLFtUj7I8X9WjR/l12cCvTb1cLctJ4/6+nvk/s4KGj6/082oOnz4b
5N8Vy/EKPsnzenlezGVuj/Lvyun0//s/9AVP7Vk1+mieLmdFNYUJw6eDC/z0
X8/xk8Gonvn2jwb5Wxjz6GNlGjoqlrB49nNpq8Av/nXBX0hD8bDefFwV9DGs
wKP8YrVaNI/u3KE3wxdlBKeD/Id6PC6XzaqUkfMoTmv8aN76Vsay4q//deq/
HsCGJEZ08vb45etnWTavlzP46LLE9T1+8fTgcP+h/vrwwaH8evfhXf303v7B
Xfn18L779PD+vV359f7+wT399d7+nv/1wP36UB94sHdfG3uwf2/f/6rtPrh7
V8fwcG9v1/+q7T7c372vv97fpQeePH27xz0AkfF52DouYX1n5XxM02/ySb1k
gizzd02Z15P8dFnMmwUQYv5DcV0uHbnm26c/nOxsUWueEvGHdurHQX5yUU4m
5dJ+egwUWk//aj96Cw8W1XzVP5qPlyV9A4OBse3v7t2DP9+dHJ08ffkyHPbT
elyO86dAqcVoRYNa5f1+fr8/rFb50axcVqNinp+sCpjYEh6Ex2lqL+cT3lcg
WTqVo4tifl728qPXJy/z/3kwuJuaEJPYlmv3NTVQTF0HDTTWwNjWq3LLzGAP
CAX+fP/d0en7bwfvjn8IJwEf8NOrYnlerjz9r5fTQbMoR4Ori2J1dT4ACr2T
GJacCW7edPuquIbF29/3XT99c3wS9v2iXI0u3Pgf5fhEvljWwHzqaXpUE3yl
Na6v8Ov+CM5XX1//GUP9fj0vcawHONaDp4Pj50/7n2bTPjDVB3t7+4fhoJ9/
gjPcVMNpCXNcflwvgCTn5+vivEyP+OrqanB1QMM8Pb4jbd+J+xjAH91DBo7z
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
c3VV/E8zp6GVfcwCAA==

-->

</rfc>
