<?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.4 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-10" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.0 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-10"/>
    <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>yes.com</organization>
      <address>
        <email>torsten@lodderstedt.net</email>
      </address>
    </author>
    <date year="2024" month="January" day="09"/>
    <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>With OAuth, an end-user (resource owner) can grant a printing
service (client) access to their protected photos stored at a photo-
sharing service (resource server), without sharing their username and
password with the printing service.  Instead, they authenticate
directly with a server trusted by the photo-sharing service
(authorization server), which issues the printing 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, and is not an authentication protocol. 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="I-D.ietf-oauth-security-topics"/>),
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="I-D.ietf-oauth-security-topics"/>). 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="I-D.ietf-oauth-security-topics"/>.</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>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>
      </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"/>).</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>
        </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>Access tokens represent specific scopes and durations of access, granted by the
resource owner, and enforced by the resource server and 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. 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 and resource server. 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>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 target="I-D.ietf-oauth-security-topics"/> Section 4.10.1, 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 Section 4.13 of <xref target="I-D.ietf-oauth-security-topics"/> 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, tampering, and message forgery
(eg. see <xref target="client-secret"/>, <xref target="authorization_codes"/>, <xref target="token-endpoint"/>, and <xref target="bearer-tokens"/>).</t>
        <t>OAuth URLs 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 Section 6.4 of <xref target="RFC9110"/>.</t>
        <t>The term "user agent" is to be interpreted as described in Section 3.5 of <xref 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 establish its registration with the
authorization server. The means through which the client registers
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"/>).</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>When registering a client, the client developer SHALL:</t>
      <ul spacing="normal">
        <li>
          <t>specify the client type as described in <xref target="client-types"/>,</t>
        </li>
        <li>
          <t>provide 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>include 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 target="RFC3986"/> Section 4.3.  The redirect URI MAY include an
"application/x-www-form-urlencoded" formatted query
component (<xref target="WHATWG.URL"/>), 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 Section 4.4.1.8. of <xref 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>Clients in possession of a client secret, sometimes known as a client password,
MAY use the HTTP Basic
authentication scheme as defined in Section 11 of <xref 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.  The authorization server MUST support the HTTP Basic
authentication scheme for authenticating clients that were issued a
client secret.</t>
          <t>For example (with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
Authorization: Basic czZCaGRSa3F0Mzo3RmpmcDBaQnIxS3REUmJuZlZkbUl3
]]></artwork>
          <t>In addition to that, the authorization server MAY support including the
client credentials in the request 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>Including the client credentials in the request content using the two
parameters is NOT RECOMMENDED and SHOULD be limited to clients unable
to directly utilize the HTTP Basic authentication scheme (or other
password-based HTTP authentication schemes).  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>Since this client 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 an "application/x-www-form-urlencoded" formatted
query component <xref target="WHATWG.URL"/>, 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 Section 9.3.1 of <xref target="RFC9110"/> for the authorization endpoint and MAY support
the <tt>POST</tt> method (Section 9.3.3 of <xref 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 (also known as CORS) <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 an <tt>application/x-www-form-urlencoded</tt> formatted
query component (<xref target="WHATWG.URL"/>).</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 <tt>application/x-www-form-urlencoded</tt>
format per <xref target="application-x-www-form-urlencoded"/> with a character encoding of UTF-8 in the HTTP
request content:</t>
          <dl>
            <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>
            <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>
          </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 HTTP 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 content using the <tt>application/json</tt>
media type as defined by <xref target="RFC8259"/> with the following parameters
and an HTTP 200 (OK) status code:</t>
          <dl>
            <dt>"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.  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
expiration time via other means or document the default value.</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 by adding each parameter at the highest structure level.
Parameter names and string values are included as JSON strings.
Numerical values are included as JSON numbers.  The order of
parameters does not matter and can vary.</t>
          <t>The authorization server MUST include the HTTP <tt>Cache-Control</tt>
response header field (see Section 5.2 of <xref 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 by <xref target="RFC7159"/>.  The
parameters are serialized into a JSON structure by adding each
parameter at the highest structure level.  Parameter names and string
values are included as JSON strings.  Numerical values are included
as JSON numbers.  The order of parameters does not matter and can
vary.</t>
          <t>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
using the <tt>application/x-www-form-urlencoded</tt> format, per <xref target="application-x-www-form-urlencoded"/>:</t>
          <dl>
            <dt>"response_type":</dt>
            <dd>
              <t>REQUIRED.  The authorization endpoint supports different sets of request and response
pameters. 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="I-D.ietf-oauth-security-topics"/>) 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
HTTP 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 target="RFC3986"/>, Section 6.2.1, Simple String Comparison, for details.</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 <tt>application/x-www-form-urlencoded</tt> format,
per <xref target="application-x-www-form-urlencoded"/>:</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 using the
<tt>application/x-www-form-urlencoded</tt> format, per <xref target="application-x-www-form-urlencoded"/>:</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 required:</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>
          </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 HTTP 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 authorization 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 authorization 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 required/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 HTTP 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 Section 2 of
<xref target="RFC2617"/>.  Note that, as with Basic, it does not conform to the
generic syntax defined in Section 1.2 of <xref 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>
        </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 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 retured.</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
Section 11.1 of <xref 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 Section 11.4 of <xref 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 Section 11.2 of <xref 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 Section 11.2 of <xref 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 Section 11.3 of <xref 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
Section 11.4 of <xref 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="I-D.ietf-oauth-security-topics"/>.</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-disclosure">
            <name>Access token disclosure</name>
            <t>Access tokens may contain authentication and attribute
statements that include sensitive information.</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.</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>If cookies are transmitted without TLS protection, any
information contained in them is at risk of disclosure.  Therefore,
Bearer tokens MUST NOT be stored in cookies that can be sent in the
clear, as any information in them is at risk of disclosure.
See "HTTP State Management Mechanism" <xref target="RFC6265"/> for security
considerations about cookies.</t>
          <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>
        </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-emtpively 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 (Section 15.4.8 of <xref 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
relying party 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
Section 15.4.8 of <xref 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
unambigiously 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.</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.  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 target="RFC6819"/>, Section 5.3.5. 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 Section 4.4.1.9 of <xref 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
Section 4.1.1 of <xref target="I-D.ietf-oauth-security-topics"/>.
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="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 Section 4.4 of <xref target="I-D.ietf-oauth-security-topics"/> 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 Section 4.2.2 of <xref 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 Section 3.8 of <xref 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 Section 3.2 of <xref 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 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="I-D.ietf-oauth-security-topics"/>),
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 Section 4.1.3 of <xref target="I-D.ietf-oauth-security-topics"/></t>
        </li>
        <li>
          <t>The Implicit grant (<tt>response_type=token</tt>) is omitted from this specification
as per Section 2.1.2 of <xref target="I-D.ietf-oauth-security-topics"/></t>
        </li>
        <li>
          <t>The Resource Owner Password Credentials grant is omitted from this specification
as per Section 2.4 of <xref target="I-D.ietf-oauth-security-topics"/></t>
        </li>
        <li>
          <t>Bearer token usage omits the use of bearer tokens in the query string of URIs
as per Section 4.3.2 of <xref target="I-D.ietf-oauth-security-topics"/></t>
        </li>
        <li>
          <t>Refresh tokens for public clients must either be sender-constrained or one-time use
as per Section 4.13.2 of <xref target="I-D.ietf-oauth-security-topics"/></t>
        </li>
        <li>
          <t>The token endpoint request containing an authorization code no longer contains
the <tt>redirect_uri</tt> parameter</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="I-D.ietf-oauth-security-topics"/>.</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 (section 4.1.3 of <xref 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>
      <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="RFC7159" target="https://www.rfc-editor.org/info/rfc7159" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7159.xml">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="March" year="2014"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7159"/>
          <seriesInfo name="DOI" value="10.17487/RFC7159"/>
        </reference>
        <reference anchor="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="I-D.ietf-oauth-security-topics" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics-24" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-security-topics.xml">
          <front>
            <title>OAuth 2.0 Security Best Current Practice</title>
            <author fullname="Torsten Lodderstedt" initials="T." surname="Lodderstedt">
              <organization>SPRIND</organization>
            </author>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Andrey Labunets" initials="A." surname="Labunets">
              <organization>Independent Researcher</organization>
            </author>
            <author fullname="Daniel Fett" initials="D." surname="Fett">
              <organization>Authlete</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>This document describes best current security practice for OAuth 2.0. It updates and extends the OAuth 2.0 Security Threat Model 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.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-security-topics-24"/>
        </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 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="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-15" 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 Apps</title>
            <author fullname="Aaron Parecki" initials="A." surname="Parecki">
              <organization>Okta</organization>
            </author>
            <author fullname="David Waite" initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Philippe De Ryck" initials="P." surname="De Ryck">
              <organization>Pragmatic Web Security</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <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-15"/>
        </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 3567?>

<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>
      <t>GitHub discussion: <eref target="https://github.com/oauth-wg/oauth-v2-1/issues/128">https://github.com/oauth-wg/oauth-v2-1/issues/128</eref></t>
    </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="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="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="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="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="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="RFC9449"/>: Demonstrating Proof of Possession (DPoP)
          </t>
          <ul spacing="normal">
            <li>
              <t>DPoP describes a mechanism of binding tokens to the clients they were issued to, and providing proof of that binding in an HTTP header when making requests.</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="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="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="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>
      </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, and Karsten Meyer zu Selhausen.</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>-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:
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
AicS+5+xeQ5rAgVY57PN+Xn4P/WdgpSdsgIA

-->

</rfc>
