<?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.6.36 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-09" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.4 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-09"/>
    <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="2023" month="July" day="10"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 167?>

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

<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>Applications are required to store the resource
owner's credentials for future use, typically a password in
clear-text.</li>
        <li>Servers are required to support password authentication, despite
the security weaknesses inherent in passwords.</li>
        <li>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.</li>
        <li>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.</li>
        <li>Resource owners cannot revoke access to an individual application
without revoking access to all third parties, and must do so by
changing their password.</li>
        <li>Compromise of any application results in compromise of
the end-user's password and all of the data protected by that
password.</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>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.</li>
          <li>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.</li>
          <li>The client requests an access token by authenticating with the
authorization server and presenting the authorization grant.</li>
          <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token.</li>
          <li>The client requests the protected resource from the resource
server and authenticates by presenting the access token.</li>
          <li>The resource server validates the access token, and if valid,
serves the request.</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 are 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 permissions 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>The client requests an access token by authenticating with the
authorization server and presenting an authorization grant.</li>
            <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token
and optionally a refresh token.</li>
            <li>The client makes a protected resource request to the resource
server by presenting the access token.</li>
            <li>The resource server validates the access token, and if valid,
serves the request.</li>
            <li>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.</li>
            <li>Since the access token is invalid, the resource server returns
an invalid token error.</li>
            <li>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.</li>
            <li>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).</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-token">
        <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.  The string is considered opaque to the client, even if it has
a structure. Depending on the authorization server, the access token
string may be parseable by the resource server, such as when using the
JSON Web Token Profile for Access Tokens (<xref target="RFC9068"/>).</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>The token may be used by the RS 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 <xref target="RFC9068"/>,
a method of encoding 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="I-D.ietf-oauth-dpop"/> and Mutual TLS 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 whom 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>
      <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>
            <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</li>
          <li>
            <xref target="RFC7591"/>: Dynamic Client Registration, providing a mechanism for programmatically registering clients with an authorization server</li>
          <li>
            <xref target="RFC7592"/>: Dynamic Client Management, providing a mechanism for updating dynamically registered client information</li>
          <li>
            <xref target="RFC7662"/>: Token Introspection, defining a mechanism for resource servers to obtain information about access tokens</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>specify the client type as described in <xref target="client-types"/>,</li>
        <li>provide client details needed by the grant type in use,
such as redirect URIs as described in <xref target="redirection-endpoint"/>, and</li>
        <li>include any other information required by the authorization server
(e.g., application name, website, description, logo image, the
acceptance of legal terms).</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 string 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, the client MUST
include a redirect URI with the authorization request using the
<tt>redirect_uri</tt> request parameter.</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>In order to prevent mix-up attacks, clients MUST only process redirect
responses of the authorization server they sent the respective request
to and from the same user agent this authorization request was
initiated with. Clients MUST store the authorization server they sent
an authorization request to and bind this information to the user
agent and check that the authorization response was received from the
correct authorization server. Clients MUST ensure that the subsequent
access token request, if applicable, is sent to the same authorization
server. Clients SHOULD use distinct redirect URIs for each
authorization server as a means to identify the authorization server a
particular response came from.</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>Authorization endpoint - used by the client to obtain
authorization from the resource owner via user agent redirection.</li>
        <li>Token endpoint - used by the client to exchange an authorization
grant for an access token, typically with client authentication.</li>
      </ul>
      <t>As well as one client endpoint:</t>
      <ul spacing="normal">
        <li>Redirection endpoint - used by the authorization server to return
responses containing authorization credentials to the client via
the resource owner user agent.</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>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.</li>
            <li>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.</li>
            <li>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.</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>require client authentication for confidential clients
(or clients with other authentication requirements),</li>
            <li>authenticate the client if client authentication is included</li>
          </ul>
          <t>Further grant type specific processing rules apply and are specified with the respective
grant type.</t>
          <section anchor="access-token-scope">
            <name>Access Token Scope</name>
            <t>The authorization and token endpoints allow the client to specify the
scope of the access request using the <tt>scope</tt> request parameter.  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>
        <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-token-types"/>.  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 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>
    <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>authorization code</li>
        <li>client credentials, and</li>
        <li>refresh token</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.  As described in <xref target="redirection-endpoint"/>.</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 client MUST NOT use the authorization code
more than once.  If an authorization code is used more than
once, 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.  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 mixup attacks, if the client interacts
with more than one authorization server. See <xref target="RFC9207"/> for
additional details on when this parameter is necessary, and how the
client can use it to prevent mixup 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>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>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,</li>
            <li>verify that the authorization code is valid,</li>
            <li>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,</li>
            <li>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</li>
            <li>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.</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>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</li>
            <li>validate that the grant corresponding to this refresh token is still active</li>
            <li>validate the refresh token</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>
              <em>Sender-constrained refresh tokens:</em> the authorization server
cryptographically binds the refresh token to a certain client
instance, e.g. by utilizing <xref target="RFC8705"/> or <xref target="I-D.ietf-oauth-dpop"/>.</li>
            <li>
              <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.</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>password change</li>
            <li>logout at the authorization server</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>Accessing Protected Resources</name>
      <t>The client accesses protected resources by presenting the 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 (as well as any error responses)
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>
      <t>The method in which the client utilizes the access token to
access protected resources at the resource server depends on the type of access
token issued by the authorization server.  Typically, it involves
using the HTTP <tt>Authorization</tt> request header field <xref target="RFC7235"/> with an
authentication scheme defined by the specification of the access
token type used, such as <tt>Bearer</tt>, defined below.</t>
      <section anchor="access-token-types">
        <name>Access Token Types</name>
        <t>The access token type provides the client with the information
required to successfully utilize the access token to make a protected
resource request (along with type-specific attributes).  The client
MUST NOT use an access token if it does not understand the token
type.</t>
        <t>For example, the <tt>Bearer</tt> token type defined in this specification is utilized
by simply including the access token string in the request:</t>
        <artwork><![CDATA[
GET /resource/1 HTTP/1.1
Host: example.com
Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
        <t>The above example is provided for illustration purposes only.</t>
        <t>Each access token type definition specifies the additional attributes
(if any) sent to the client together with the <tt>access_token</tt> response
parameter.  It also defines the HTTP authentication method used to
include the access token when making a protected resource request.</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 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, as described in <xref target="accessing-protected-resources"/>. 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 anchor="authenticated-requests">
          <name>Authenticated 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>
authentication 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[
b64token    = 1*( ALPHA / DIGIT /
                 "-" / "." / "_" / "~" / "+" / "/" ) *"="
credentials = "Bearer" 1*SP b64token
]]></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>The HTTP request includes the <tt>Content-Type</tt> header
field set to <tt>application/x-www-form-urlencoded</tt>.</li>
              <li>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"/>.</li>
              <li>The HTTP request content is single-part.</li>
              <li>The content to be encoded in the request MUST consist entirely
of ASCII <xref target="USASCII"/> characters.</li>
              <li>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.</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="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>
          <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>
          <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>
          <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"/>.  In addition, 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.  It also
MAY include the <tt>error_uri</tt> attribute with an absolute URI
identifying a human-readable web page explaining the error.  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>
          <t>For example, in response to a protected resource request without
authentication:</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 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>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>
        </section>
      </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 method by which the resource server
does this is determined by the particular token type, such as the
description of Bearer tokens in <xref target="bearer-token-error-codes"/>.</t>
        <section anchor="extension-token-types">
          <name>Extension 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>
        </section>
      </section>
      <section anchor="sender-constrained-tokens">
        <name>Sender-Constrained Access Tokens</name>
        <t>A sender-constrained access token scopes the applicability of an
access token to a certain 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 Mutual TLS for OAuth 2.0 <xref target="RFC8705"/>
or OAuth Demonstration of Proof of Possession (DPoP) <xref target="I-D.ietf-oauth-dpop"/>.
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="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>
        <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.  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="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="protecting-the-authorization-code-flow">
        <name>Protecting the Authorization Code Flow</name>
        <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 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="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 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>The client is a confidential client.</li>
            <li>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.</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>
      <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>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.</li>
          <li>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"/>.</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>
        <t><tt>
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
...
</tt></t>
        <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>The following attacks can occur when an AS or client has an open
redirector. 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>
        <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>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.</li>
            <li>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.</li>
            <li>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.</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="authorization-server-mix-up-mitigation-in-native-apps">
        <name>Authorization Server Mix-Up Mitigation in Native Apps</name>
        <t>(TODO: merge this with the regular mix-up section when it is brought in)</t>
        <t>To protect against a compromised or malicious authorization server
attacking another authorization server used by the same app, it is
REQUIRED that a unique redirect URI is used for each authorization
server used by the app (for example, by varying the path component),
and that authorization responses are rejected if the redirect URI
they were received on doesn't match the redirect URI in an outgoing
authorization request.</t>
        <t>The native app MUST store the redirect URI used in the authorization
request with the authorization session data (i.e., along with <tt>state</tt>
and other related data) and MUST verify that the URI on which the
authorization response was received exactly matches it.</t>
        <t>The requirement of <xref target="native-app-registration"/>, specifically that authorization
servers reject requests with URIs that don't match what was
registered, is also required to prevent such attacks.</t>
      </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>
    </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>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</li>
        <li>Redirect URIs must be compared using exact string matching
as per Section 4.1.3 of <xref target="I-D.ietf-oauth-security-topics"/></li>
        <li>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"/></li>
        <li>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"/></li>
        <li>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"/></li>
        <li>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"/></li>
        <li>The token endpoint request containing an authorization code no longer contains
the <tt>redirect_uri</tt> parameter</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>
        <name>Normative References</name>
        <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-23" 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>yes.com</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="5" month="June" 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-23"/>
        </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>
        <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="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-token-binding" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-token-binding-08" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-token-binding.xml">
          <front>
            <title>OAuth 2.0 Token Binding</title>
            <author fullname="Michael Jones" initials="M." surname="Jones">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="William Denniss" initials="W." surname="Denniss">
              <organization>Google</organization>
            </author>
            <date day="19" month="October" year="2018"/>
            <abstract>
              <t>This specification enables OAuth 2.0 implementations to apply Token Binding to Access Tokens, Authorization Codes, Refresh Tokens, JWT Authorization Grants, and JWT Client Authentication. This cryptographically binds these tokens to a client's Token Binding key pair, possession of which is proven on the TLS connections over which the tokens are intended to be used. This use of Token Binding protects these tokens from man-in-the-middle and token export and replay attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-token-binding-08"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-browser-based-apps-14" 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>
            <date day="29" month="June" year="2023"/>
            <abstract>
              <t>This specification details the 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-14"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-dpop" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-dpop-16" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-dpop.xml">
          <front>
            <title>OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP)</title>
            <author fullname="Daniel Fett" initials="D." surname="Fett">
              <organization>Authlete</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Torsten Lodderstedt" initials="T." surname="Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author fullname="Michael B. Jones" initials="M. B." surname="Jones">
              <organization>independent</organization>
            </author>
            <author fullname="David Waite" initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <date day="13" month="April" 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="Internet-Draft" value="draft-ietf-oauth-dpop-16"/>
        </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="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>
      </references>
    </references>
    <?line 3479?>

<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>TBD: Describe OAuth's use of <tt>application/x-www-form-urlencoded</tt> encoding, both for URL parameters as well as for the client_id and secret encoding.</t>
      <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="RFC8628"/>: OAuth 2.0 Device Authorization Grant
          </t>
          <ul spacing="normal">
            <li>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.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8414"/>: Authorization Server Metadata
          </t>
          <ul spacing="normal">
            <li>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.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8707"/>: Resource Indicators
          </t>
          <ul spacing="normal">
            <li>Provides a way for the client to explicitly signal to the authorization server where it intends to use the access token it is requesting.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7591"/>: Dynamic Client Registration
          </t>
          <ul spacing="normal">
            <li>Dynamic Client Registration provides a mechanism for programmatically registering clients with an authorization server.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7592"/>: Dynamic Client Management
          </t>
          <ul spacing="normal">
            <li>Dynamic Client Management provides a mechanism for updating dynamically registered client information.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9068"/>: JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens
          </t>
          <ul spacing="normal">
            <li>This specification defines a profile for issuing OAuth access tokens in JSON Web Token (JWT) format.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8705"/>: Mutual TLS
          </t>
          <ul spacing="normal">
            <li>Mutual TLS describes a mechanism of binding access tokens and refresh tokens to the clients they were issued to, as well as a client authentication mechanism, via TLS certificate authentication.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7662"/>: Token Introspection
          </t>
          <ul spacing="normal">
            <li>The Token Introspection extension defines a mechanism for resource servers to obtain information about access tokens.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7009"/>: Token Revocation
          </t>
          <ul spacing="normal">
            <li>The Token Revocation extension defines a mechanism for clients to indicate to the authorization server that an access token is no longer needed.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9126"/>: Pushed Authorization Requests
          </t>
          <ul spacing="normal">
            <li>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.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9207"/>: Authorization Server Issuer Identification
          </t>
          <ul spacing="normal">
            <li>The <tt>iss</tt> parameter in the authorization response indicates the identity of the authorization server to prevent mix-up attacks in the client.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9396"/>: Rich Authorization Requests
          </t>
          <ul spacing="normal">
            <li>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.</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, and Bob Hamburg.</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>-09</t>
      <ul spacing="normal">
        <li>AS MUST NOT support CORS requests at authorization endpoint</li>
        <li>more detail on asymmetric client authentication</li>
        <li>sync CSRF description from security BCP</li>
        <li>update and move sender-constrained access tokens section</li>
        <li>sync client impersonating resource owner with security BCP</li>
        <li>add reference to authorization request from redirect URI registration section</li>
        <li>sync refresh rotation section from security BCP</li>
        <li>sync redirect URI matching text from security BCP</li>
        <li>updated references to RAR (RFC9396)</li>
        <li>clarifications on URIs</li>
        <li>removed redirect_uri from the token request</li>
        <li>expanded security considerations around code_verifier</li>
        <li>revised introduction section</li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>Updated acknowledgments</li>
        <li>Swap "by a trusted party" with "by an outside party" in client ID definition</li>
        <li>Replaced "verify the identity of the resource owner" with "authenticate"</li>
        <li>Clarified refresh token rotation to match RFC6819</li>
        <li>Added appendix to hold application/x-www-form-urlencoded examples</li>
        <li>Fixed references to entries in appendix</li>
        <li>Incorporated new "Phishing via AS" section from Security BCP</li>
        <li>Rephrase description of the motivation for client authentication</li>
        <li>Moved "scope" parameter in token request into specific grant types to match OAuth 2.0</li>
        <li>Updated Clickjacking and Open Redirection description from the latest version of the Security BCP</li>
        <li>Moved normative requirements out of authorization code security considerations section</li>
        <li>Security considerations clarifications, and removed a duplicate section</li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>Removed "third party" from abstract</li>
        <li>Added MFA and passwordless as additional motiviations in introduction</li>
        <li>Mention PAR as one way redirect URI registration can happen</li>
        <li>Added a reference to requiring CORS headers on the token endpoint</li>
        <li>Updated reference to OMAP extension</li>
        <li>Fixed numbering in sequence diagram</li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>Removed "credentialed client" term</li>
        <li>Simplified definition of "confidential" and "public" clients</li>
        <li>Incorporated the <tt>iss</tt> response parameter referencing RFC9207</li>
        <li>Added section on access token validation by the RS</li>
        <li>Removed requirement for authorization servers to support all 3 redirect methods for native apps</li>
        <li>Fixes for some references</li>
        <li>Updates HTTP references to RFC 9110</li>
        <li>Clarifies "authorization grant" term</li>
        <li>Clarifies client credential grant usage</li>
        <li>Clean up authorization code diagram</li>
        <li>Updated reference for application/x-www-form-urlencoded and removed outdated note about it not being in the IANA registry</li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>Added a section about the removal of the implicit flow</li>
        <li>Moved many normative requirements from security considerations into the appropriate inline sections</li>
        <li>Reorganized and consolidated TLS language</li>
        <li>Require TLS on redirect URIs except for localhost/custom URL scheme</li>
        <li>Updated refresh token guidance to match security BCP</li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>Added explicit mention of not sending access tokens in URI query strings</li>
        <li>Clarifications on definition of client types</li>
        <li>Consolidated text around loopback vs localhost</li>
        <li>Editorial clarifications throughout the document</li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>refactoring to collect all the grant types under the same top-level header in section 4</li>
        <li>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</li>
        <li>Incorporated many of the published errata on RFC6749</li>
        <li>Updated references to various RFCs</li>
        <li>Editorial clarifications throughout the document</li>
      </ul>
      <t>-02</t>
      <t>-01</t>
      <t>-00</t>
      <ul spacing="normal">
        <li>initial revision</li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9+XIbyZU3+n8+RX3ssJu0AYiLlpY88gy1davdWixKo6/t
8CcWgSJZFoDCoABRtFrzBvcd7rPciPte96yZJ7OyQKrd9tyJGMWMWwJQWbmc
PPv5neFw6Fb1alrdK16fV8WLw/XqvNgf7RX4l2ZZ/61c1c28eLIsZ9VFs3zv
Js14Dn+/V0yW5elqWFer02FTwo+HH/aHe8Pdu87Vi+W9YrVct6v93d27u/vu
4uyejPwWhqjnZ8W3y2a9cO8v7hVP56tqOa9Ww0c4nhuXq3tFu5q4clmV94qj
arxe1qtL5xb1PVcUq2Z8r7isWvhr2yxXy+q09f++nIV/upKmj48Mi3oOnz4a
Fd+Vy8kKPimKZnlWzmVt94rvqun0//2/6Ate2qN6/N78upqV9RQWDJ+OzvHT
fzvDT0bjZhbGPxwVL2HO4/e1GeiwXMLm2c9lrBK/+LcFfyEDpdN68X5V0sew
A/eK89Vq0d67cYOejB+UGbweFT80k0m1bFeVzJxn8brBj+adb2UuK/7636bh
6xEcSGZGsLP0SjdvljP47EOFG/zqycODu9/clr/evHvzrvz11v7BTfnr7Tv+
09t3bu3KX+/s3dJP7+wf3NK/3trfC3898H+9qz/4Zu+OjvvN/q398Fcd7Jub
N3U6d/f2dsNfddy7+7t38K9Ph49GhoJbobbhqlnU4xZ/8eDhyz1+MRAf35Ot
VxVswqyaT2hb2uK0WTKhVsWbtiqa0+L1spy3CyDQ4ofyslp6Mi62X/9wtLNF
owUKxT90gj+OiqPz6vS0WtpPXwHlNtO/2Y9ewg/Ler4aHs4ny4q+gcnA3PZ3
927BP98cHR49fPo0nvbDZlJNiodAweV4RZNaFcNhcWd4Uq+Kw1m1rMflvDha
lbCwJfwQfk5Lezo/5eMGUqbbOj4v52fVoDh8fvS0+N8Ho5u5BTHpbflxn9MA
5dS/oIXBWpjbelVtmRXsASnBP99+d/j67bejN69+iBcBH/CvV+XyrFqFe7Fe
TkftohqPLs7L1cXZCCj3RmZacld4ePPaZ+UlbN7+fnj1wxevjuJ3P6lW43M/
/3sF/qJYLBtgSs00P6tTfKQzr6/w6+EY7t1QH/+CqX6/nlc41wOc68HD0avH
D4cfZ9MhMNtv9vb2b8eTfvwR7nZbn0wrWOPy/XoBJDk/W5dnVX7GFxcXo4sD
mubrVzdk7BvpO0bwj/4pAyd6sCwv4w+/RwbZTOv404ej4hkQ86JanlTLs+Gz
8R/XVTWPf/MYflNO/aWQT5+Mih/hkapcm7153nyoZjBSgRMFSaSk6znV7f3b
ykZuf7PnuQ/IKc9nwqe37gZGdFf5zJ3bB7f9X2977nNzz/Ok2/vf6F/v7N4K
f72j3Gf39jeeJ+17TnVw97bypJNlOZlWl8KW/nqxGlbzMV7fYbvCdXZZ16p5
X83hJs8nIF4z358sm4u2Wg5PyhZGKReLNvOjyaJZ3HPw+YtFNX/6KCIk/gi4
wnxejVfwX+B2e6PdLA018Nt6gkLkBpJ+Kx8AxdPDSPnVcO/d7uh8JWSUnN43
A+RkN/sp7DkywPf1bL0sO1T2gDcv/hyI7PtmToqC+fTBqAAm96yaVPWyabuU
CRy8nsFkaU+eHb6Mr9aL+bSGq/hsPYVfVZO6TJSml3K3QQ9AzjkBhWh5GRgs
8lZ9ABjz4XhctS1IY68S2ZFfVW2zXsIvcrw2rP279elp/CHoPUfj82k5Pl/F
X4DC8ryclLCEzihH9WwGgi3+HGTOq6at5nhPO988Kydtem2BCxyOq86mvgI1
qpqumvnw8GRSd87jQXMpN51p4nB9BvtG9LDfy7DaD6uSWBaw08l6vLrR0NEM
Z34Dh6U9Gs92b+DJPn969Pqb3d3h7YP4fPFzZE3jGsTWy/XJFAQZHSz/eLg3
KJ4+f/Li1bPD109fPC+OHj988+rp6x+tNHtUjYmiaf57G5g8LHy9XHaO7lEz
aZsuO3xeXazSj0FNeFktp/OUT8IxvGym7+MPj0bFt+vFquyOXJ6crNvORsM+
j9vleDSv29XorPlwYxG2o70RWMboGdAwyJY2uSkx89AfIQPZQM//7Eue7sX3
IsIisZuhwmtwvJmsOHA9GKW5KNvFuyWQ5zLZrreHRy9BU6vKFSqEwAmOQIuC
/RoWb+Yf4MrijCbAE+BJGL0tgKMUT5rlBapVebE+xsFaHKuloUb0croz5qsb
Zvh3fvh3MPw7Hf4dTesdTSvl36CU7OLCHh69HO6nyicwtfkqaMJAk/X4svih
+lBNi/3r6CIw6n7mahV7t+h23XZuCOpseQJcFhRc52J7Nrr/xanas0U1L0E3
wi10IBX9FQc23JysQMcupvWsxt0uPX8uSemDnYFPl8KXB0VVr85hNnAtT6rz
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
WtwLRo0WuQLpa0ObQqP3IynxtyAbuxeKJaUGiD8hpMwJVo72iFtFrgRRWZ4x
LR79FW7Ncs1lo9K6i0oSYH5VDIM1Viupb4rrkS33Yimr/Vtait8IgobLPxWk
iYQ6ZhbDcvmiOX+Y+LlqyS/my65JIGwnMIhhIeQDC2iJKxG75FNT0sFDWXQm
7Mw0tGvnqc0qP9+m4XAunYxOtJgTi1uMmlu9XV016NFdibzmeFhWUvBwyS54
J0vNGK3lurMoOy05fBFsLcQS5xLQEVmXh6kTfmLRNA3MM7rIAPXqdGUrhECl
mo9aMzAHf4nIYsuR9RWRua/4Q2mDXF9EwQW8fwp9eOZNpjJmh2o1AaDKcJ2P
MZ2UADez2cqxhtwFjGL96tfDIwKxLq7r7oqF1RD5uQd6pJWbpaSH8DcyIGuJ
iiSMmwku025Sv7I4j6nVnugerFslTVQHNTwUOR0stKqZit7jFWuWBNuFPVpm
VQTNMGypR2tfyCRz3UGgChZZkO4hQ7ib5JC4sgnMDAeSSUiZ06Q+ayh6N6GW
77do2aRdA5LPli1YR6gHOnBYqFNc25RGzjlh39DDj2HPBc6qaCsf37qLovKu
Pqp/uhEARrC7mWXAK4s4YFrX08WSqfwd30woMyCyZv00GBfJZy/AwRHs4DAf
zeoTKfYqrtog5xHjcx58v//pU+DOP+orNH0wpQwkGvX7FLFAvIY5xBjKL3C6
eUNGymDNTzo20L9IUYk29RwvkmzT6mLdIUBI7I1Wo3WUHWgSNceijg3pTjvC
po+EdLJpxNLJfrhACbvWLT/eNGDgSL5ulpIjukrxkDrTdnIsd049dSPuRstf
NVRFotFw5e2wBKWg3aUOAxFmdCZFsBB2DXMaWEjUI/unzSm3VHI/jCwzROa8
dBrUzVbsGsUuZBNc5XjT/BY8TyECudXSexLJJ4U+hagLsyn86zV36bBZ46rP
7SvbtSBWLph9dDp2j3na/xId3uZ4T8aZr/qXrng2EX6FMQG3U0yDU8wmsWq5
kovYn8QcGJG+KJPK38Y01GE4FMfAPlQKmeQwN4zoQgQbhmY0qP0yEkF2D13k
hRCw26lhegNKWtiXdhJLIgwrWz3WgnKEyAgdUKPFvDKx4aus9TrVtk8b4zCQ
Gh6cof1McxxT3CzguJAzGBgPTybCHcSph9eKWplMo4RwGoelDLG5JZCOiAmY
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
CowHie9yYsDfmYsB/rZpmBIx6m43bTT7MuTyl/Dt5IA/7bvJA/0K7mPq/x9L
hptmXPKbO+J6X+N+G/oyf++f9JVh41fK2m0Sp96AN32vkyn7ThT4DHzfFiH7
81aPviuuYP4hJnubxA9RsCEdnH74zNBtSLY/dAh4hOpY/gcU551iIO5iU6z0
H0mpVvZP+oydManUnQn+7yb1SvNXnmbxT1sOsa27GTbTsJphLcwRpOKN/qfN
b9bpK2XRq/feW/HXoYVLP9z+jbor2PyZn4+zkyU/PKv0xzgo+p8tq5p+/nNW
NXo4lMv5rS1nOv3w5fMs945bnmW8Vk8QhPoH1zb77fYvlZmWuzHX82y6/QmC
a4YF4JkGY1Io0g+P1RATDTXXKXSTU01lI7XFJ8tJbxinG9LA8Lc/ea9awCdN
MzwaIBGKiFALRC/b8OSA6gYd6yXxxffvfbN/8N16Tm7Ikjj66KL0z3gFBuAG
1B/qzv/awW18Jdnu9/fHDw5hsT/cH397iF/5fvr13t3xve/dJ1lga+M3udDX
xo+ya/7vflUgblGFsSlY/M6H8fX19Rg0Y+vlTJ3Cl9H2qau3pCI+fuUuHw9e
Tofl46ePqqcSTeL4Cvd1QBbhsy88BmfMFIBBRNdohqlQ1Ym7Y6NXD9w8KmU7
IkdFnxSX4K/t6sf1CSH2TteAnz+q/quyqpy3q4v1SSJUGV+fy3+8Pxjv30Ee
qbsTF+u/Yeqe6ZFCdRR2vhCQ47G67LUl52mc43iU1lxwNU0Jka4svubMI6YG
yXrGbTw8+C7uVhfYesol1zky8K9I0FUVpw83X4LOPJcNIfMMdrNKdzyP49/T
RrY6UAlICck8V3xLo5b5wtcEz9rLlqME1F3ZuoqAlsBVqbuE3MT4N60jguL4
u0uihX77D6HFQrN1fjMwqYQfBX6TwjcLXmkjIqbAZEf8wZfyM/Ju/BeKwPAf
O+6rNUlzfX//Ps11Pm9HEqptVjV128Ekb72i2s1hTbx0T4lzgADbe6Kq827B
Gv61mCqYHN5V6yuJkJ8x7mOhrc6YL5ebrFi9bcJEeSr5ROm2QqVHIp7uB6YR
vsxSBIkF3ljBHM1m56bv27vf0vQZ1uAFpzMXyw6T9lpjbTXgdfnORUA49RgH
VHe2lfaGC33blSS1rOMGbnAyJkCtxACcRsyE8I+2MsfTyLf8niKIvpScC/8W
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

-->

</rfc>
