<?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.25 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-08" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-08"/>
    <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="March" day="13"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <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>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>In the traditional client-server authentication model, the client
requests an access-restricted resource (protected resource) on the
server by authenticating with 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>OAuth addresses these issues by introducing an authorization layer
and 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>For example, 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>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.</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 endpoint 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 endpoint 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.</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 credentials (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 redirection
endpoint response.  Instead, it SHOULD extract the credentials from
the URI and redirect the user agent again to another endpoint without
exposing the credentials (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 a JWT
<xref target="RFC7523"/>.  When asymmetric 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 location of the
authorization endpoint are beyond the scope of this specification,
but the location is typically provided in the service documentation,
or in the authorization server's metadata document (<xref target="RFC8414"/>).</t>
        <t>The endpoint 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
endpoint URI MUST NOT include a fragment component.</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 RFC9110) as well.</t>
        <t>The authorization server MUST ignore unrecognized request parameters.</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>
      </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 location of the token
endpoint are beyond the scope of this specification, but the location
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 endpoint URI MAY include an <tt>application/x-www-form-urlencoded</tt>
formatted query component (<xref target="WHATWG.URL"/>)
and MUST NOT include a fragment component.</t>
        <t>The client MUST use the HTTP <tt>POST</tt> method when making access token
requests.</t>
        <t>The authorization server MUST ignore unrecognized request parameters.</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 Cross-Origin Resource Sharing (CORS) headers.
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)-- & Redirection URI ---->|               |
 | |   |    |                                 |               |
 | |   '---------(2)-- User authenticates --->|               |
 | | User-  |                                 | Authorization |
 | | Agent  |                                 |     Server    |
 | |        |                                 |               |
 | |    .--------(3)-- Authorization Code ---<|               |
 +-|----|---+                                 +---------------+
   |    |                                         ^      v
   |    |                                         |      |
   ^    v                                         |      |
 +---------+                                      |      |
 |         |>---(4)-- Authorization Code ---------'      |
 |  Client |          & Redirection 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 using simple
character-by-character string comparison as defined in <xref target="RFC3986"/>, Section 6.2.1.</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>"redirect_uri":</dt>
            <dd>
              <t>REQUIRED, if the <tt>redirect_uri</tt> parameter was included in the
authorization request as described in <xref target="authorization-request"/>, in which case their
values MUST be identical. If no <tt>redirect_uri</tt> was included in the
authorization request, this parameter is OPTIONAL.</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
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&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>ensure that the <tt>redirect_uri</tt> parameter is present if the
<tt>redirect_uri</tt> parameter was included in the initial authorization
request as described in <xref target="authorization-request"/>, and if included ensure that
their values are identical.</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>
        </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 (#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>validate the refresh token.</li>
          </ul>
          <t>Authorization servers SHOULD 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 by utilizing <xref target="I-D.ietf-oauth-token-binding"/>, <xref target="RFC8705"/>,
<xref target="I-D.ietf-oauth-dpop"/>, or another suitable method.</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>
          <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>
    <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="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-constrained access tokens to prevent token replay as described in
Section 4.8.1.1.2 of <xref target="I-D.ietf-oauth-security-topics"/>.
The use of Mutual TLS for OAuth 2.0 <xref target="RFC8705"/> is RECOMMENDED
as the method of sender-constrained access tokens.
Another method of achieving sender-constrained tokens is described
in <xref target="I-D.ietf-oauth-dpop"/>.</t>
          <t>It is RECOMMENDED to use end-to-end TLS.  If TLS traffic needs to be
terminated at an intermediary, refer to Section 4.11 of <xref target="I-D.ietf-oauth-security-topics"/>
for further security advice.</t>
        </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="I-D.ietf-oauth-rar"/> 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>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 access tokens authorized by a resource
owner from access tokens authorized by the client itself.</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 AS which redirects a request that potentially contains user
credentials MUST NOT use the 307 status code (see 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 to
reveal the user credentials to the client.  (In practice, however,
most user agents will only show this behaviour for 307 redirects.)</t>
          <t>Therefore, the RECOMMENDED status code for HTTP redirects is 303.</t>
        </section>
      </section>
      <section anchor="authorization_codes">
        <name>Authorization Code Injection</name>
        <t>TODO: Expand this with background on what authorization code injection is</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>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, this advice applies to all kinds of OAuth clients,
including web applications and other confidential clients.</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 are CSRF tokens that are bound to the
user agent and passed in the <tt>state</tt> parameter to the authorization
server as described in <xref target="RFC6819"/>. The same protection is provided by
the <tt>code_verifier</tt> parameter or the OpenID Connect <tt>nonce</tt> value.</t>
        <t>When using <tt>code_verifier</tt> instead of <tt>state</tt> or <tt>nonce</tt> for CSRF protection, it is
important to note that:</t>
        <ul spacing="normal">
          <li>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>
      </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>
    <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="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-22" 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>yes.com</organization>
            </author>
            <date day="13" month="March" 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-22"/>
        </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="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="I-D.ietf-oauth-rar" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-rar-23" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-rar.xml">
          <front>
            <title>OAuth 2.0 Rich Authorization Requests</title>
            <author fullname="Torsten Lodderstedt" initials="T." surname="Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author fullname="Justin Richer" initials="J." surname="Richer">
              <organization>Bespoke Engineering</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date day="30" month="January" year="2023"/>
            <abstract>
              <t>This document specifies a new parameter authorization_details that is used to carry fine-grained authorization data in OAuth messages.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rar-23"/>
        </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-13" 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="13" month="March" 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-13"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-dpop" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-dpop-14" 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>yes.com</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 Jones" initials="M." surname="Jones">
              <organization>Microsoft</organization>
            </author>
            <author fullname="David Waite" initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <date day="8" month="March" 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-14"/>
        </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>
    <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
UNICODECHARNOCRLF = %x09 /%x20-7E / %x80-D7FF /
                    %xE000-FFFD / %x10000-10FFFF
]]></artwork>
      <t>(The UNICODECHARNOCRLF definition is based upon the Char definition
in Section 2.2 of <xref target="W3C.REC-xml-20081126"/>, but omitting the Carriage
Return and Linefeed characters.)</t>
      <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="I-D.ietf-oauth-rar"/>: 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>-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+y96XYbyZUu+j+fIg9r2UXaAMRBU8mtPk1NVSqXBotU65S9
fMQkkCDTApBwJkCKVqnf4LzDfZa71n2vu8eIHZGRIFUuu2/f1VrdLglARsaw
Y8/728PhMFtVq1n5ID8+L/NXh+vVeb4/2svxL3VT/a1YVfUif9YU8/Kybj5k
k3q8gL8/yCdNMV0Nq3I1HdYF/Hh4sT/cG+7ez7Jq2TzIV826Xe3v7n6zu59d
nj2Qkd/BENXiLP+2qdfL7MPlg/z5YlU2i3I1fILjZeNi9SBvV5OsaMriQX5U
jtdNtbrKsmX1IMvzVT1+kF+VLfy1rZtVU05b9++ruf9nVtD08ZFhXi3g0yej
/Luimazgkzyvm7NiIWt7kH9Xzmb/z/+hL3hpT6rxB/Prcl5UM1gwfDo6x0//
7Qw/GY3ruR//cJS/hjmPP1RmoMOigc2zn8tYBX7xb0v+QgaKp/Xqw6qgj2EH
HuTnq9WyfXDrFj0ZPigzOB7lP9STSdm0q1JmzrM4rvGjRedbmcuKv/63mf96
BAeSmBHsLL0yW9TNHD67KHGD3zx7fPDN/bvy19vf3P5G/npn/+C2/PXuPffp
3Xt3duWv9/bu6Kf39g/u6F/hOffXb/TT+3v3dLD7+3f2/V91hPu3b+scvtnb
2/V/3dO/7u/ew78+Hz4ZGbJthcSGq3pZjVv8xaPHr/f4xUBxfDm23pSw8nm5
mNBetPm0bpg6y/xtW+b1ND9uikW7BKrMfyiuysbRbr59/MPRzhaN5skS/9Cx
/TjKj87L6bRs7KdvgFzr2d/sR6/hh0W1WA0PF5OmpG9gMjC3/d29O/DPt0eH
R4+fPw+n/bielJP8MZBtMV7RpFb5cJjfG55Wq/xwXjbVuFjkR6sCFtbAD+Hn
tLTniymfMdAvXdHxebE4Kwf54cuj5/n/OhjdTi2I6W3LjfuSBihm7gUtDNbC
3NarcsusYA/oB/757rvD43ffjt6++SFcBHzAv14VzVm58pdh3cxG7bIcjy7P
i9Xl2QjI9VZiWnJBeHjz2hfFFWze/j6++uDx6M3Tx8OP89kQuNb9vb39u+Ek
nn6ES9JWp7MSnms+rJdwzIuzdXFWpud2eXk5ujygKR2/uSVj34rfMYJ/9M8Y
rvSjprgKP/weOU09q8JPH4/yF0Agy7I5LZuz4YvxH9ZluQh/8xR+U8wcocmn
z0b5j/BIWazN1rysL8o5jJTjRIGlKzm4K393/65ezbv399w1Bobv7q7/9M43
e/6venfv3T246/56193o23vunt/dv69/vbd7x//1nt7o3bv33T3n84oud1M0
+ulpU0xm5ZV88ZfL1bBcjPF2DNsVLrn78Kr+UC7goiwmILIS35829WVbNsPT
ooVRiuWyTfxosqyXDzL4/NWyXDx/EtAUfwSXbrEoxyv4LzCTvdFukpxq+G01
QcZ8Cym+lQ+GY34Y/tuUw733u6PzlVBUdJD3B8gobvcT20vkLx+q+bopOgT3
iDcv/Bzo7ft6QcLXfPpolAMPeVFOyqqp2y6RAoOs5jBZ2pMXh6/DW/ZqMasW
8Ph6Br8qJ1URKSKvmxp0gBrE1iEypgkoGc2V51/IuvQB4HuH43HZtiDhnJph
R35TtvW6gV+kWJlf+3fr6TT8EHSJo/H5rBifr8IvQAl4WUwKWEJnlKNqPge5
EX4OLP1N3ZYLvLKdb14Ukza+wcAQDsdlZ1PfgGpSzlb1Ynh4Oqk65/GovpJL
zzRxuD6DfSN62O/lXe3FqiDutWzqyXq8ulXT0QznbgOHhT2a4VKO5hae7Mvn
R8f3d3eHdw/C88XPkUuNK5AKr9enM5ATdLD84+HeIH/+8tmrNy8Oj5+/epkf
PX389s3z4x+tsHhSjomiaf57G9g9LHzdNJ2je1JP2rrLGV+Wl6v4Y5DCr8tm
tohZJhzD63r2IfzwaJR/u16uiu7Ixenpuu1sNOzzuG3Go0XVrkZn9cWtpd+O
9pZnGaMXQMMgZtropoTMQ3+EDGQDPf+zL3m8F9+LNOOj/H4Ndz1JhTfgeHNZ
sed6MEp9WbTL9w2QZxNt17vDo9egCJXFCvUt4ARHoKTAfg3zt4sLuLI4ownw
BHgSRm9z4Cj5s7q5RK0lLeHHOFiLY7U01IheTnfGfHXLDP/eDf8ehn+vw7+n
ab2nacX8G/STXVzY46PXw/1YtwOmtlh5RRNoshpf5T+UF+Us37+JWgKj7ieu
Vr53h27X3SwbgrZYnAKXBf0xy0IbMbj/+VRtxLxcFKAm4RZmIBXdFQc2XJ+u
QIXNZ9W8wt0uHH8ucmQfsDPwaSN8eZCX1eocZgPX8rQ8L2ZTVLML9z0cNtzM
/PQKzBTYcJzjCo1LUDzhtU0N2w50B3wfpl7RGKtL0IlyGDMeAw8bHwsWBKd6
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

-->

</rfc>
