<?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.13 (Ruby 2.6.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-06" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-06"/>
    <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="2022" month="July" day="24"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The OAuth 2.1 authorization framework enables a third-party
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
third-party application to obtain access on its own behalf.  This
specification replaces and obsoletes the OAuth 2.0 Authorization
Framework described in RFC 6749.</t>
    </abstract>
  </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 third-party applications access to
restricted resources, the resource owner shares its credentials with
the third party.  This creates several problems and limitations:</t>
      <ul spacing="normal">
        <li>Third-party 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>Third-party 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 third party
without revoking access to all third parties, and must do so by
changing their password.</li>
        <li>Compromise of any third-party 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 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 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 interacts with a certain client 
(identified by its <tt>client_id</tt>) in an OAuth flow. This might by the pre-requisite to use client 
policy and metadata in the course of processing this flow. For example, the Authorization Server
may show the trustworthy client name in user consent or allow access to certain functions as 
defined in the respective's client policy.</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.<br/>
Authorization servers SHOULD consider the level of confidence in a client's identity
when deciding whether they allow a client access to certain resource servers or critical functions
such as the Client Credentials grant type.</t>
        <t>A single <tt>client_id</tt> SHOULD NOT be treated as more than one type of client.</t>
        <t>This specification has been designed around the following client profiles:</t>
        <dl>
          <dt>"web application":</dt>
          <dd>
            <t>A web application is a client running on a web
server. Resource owners access the client via an HTML user
interface rendered in a user agent on the device used by the
resource owner.  The client credentials as well as any access
tokens issued to the client are stored on the web server and are
not exposed to or accessible by the resource owner.</t>
          </dd>
          <dt>"browser-based application":</dt>
          <dd>
            <t>A browser-based application is a client in which the
client code is downloaded from a web server and executes within a
user agent (e.g., web browser) on the device used by the resource
owner.  Protocol data and credentials are easily accessible (and
often visible) to the resource owner. If such applications wish to use 
client credentials, it is recommended to utilize the 
backend for frontend pattern. Since such applications
reside within the user agent, they can make seamless use of the
user agent capabilities when requesting authorization.</t>
          </dd>
          <dt>"native application":</dt>
          <dd>
            <t>A native application is a client installed and executed on
the device used by the resource owner.  Protocol data and
credentials are accessible to the resource owner.  It is assumed
that any client authentication credentials included in the
application can be extracted. Dynamically
issued access tokens and refresh tokens can
receive an acceptable level of protection.  On some platforms, these credentials
might even be 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. The Authorization Server may itself 
issue the client identifier, it may also serve clients whose client identifier
was issued by a trusted third party. 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>Authorization servers SHOULD NOT allow clients to choose or influence their
<tt>client_id</tt> value. See <xref target="client-impersonating-resource-owner"/> for details.</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) and reject authorization
requests that specify a redirect URI that doesn't exactly match
one that was registered; the exception is 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>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").
Open redirectors can enable exfiltration of authorization codes and
access tokens, see (#open_redirector_on_client).</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
(#csrf_countermeasures)).</t>
        </section>
        <section anchor="preventing-mix-up-attacks">
          <name>Preventing Mix-Up Attacks</name>
          <t>In order to prevent mix-up attacks (see (#mix_up)), 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
Appendix B, 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="OpenID"/> 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 verify the identity of the resource owner.  The way in
which the authorization server authenticates the resource owner
(e.g., username and password login, session cookies) 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>
        <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 Appendix B 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>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>.</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 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      +---------------+
 | .---+---------(A)-- & Redirection URI ---->|               |
 | |   |    |                                 |               |
 | |   '---------(B)-- User authenticates --->|               |
 | | User-  |                                 | Authorization |
 | | Agent  |                                 |     Server    |
 | |        |                                 |               |
 | |    .--------(C)-- Authorization Code ---<|               |
 +-|----|---+                                 +---------------+
   |    |                                         ^      v
   |    |                                         |      |
   ^    v                                         |      |
 +---------+                                      |      |
 |         |>---(D)-- Authorization Code ---------'      |
 |  Client |          & Redirection URI                  |
 |         |                                             |
 |         |<---(E)----- 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 Appendix B:</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>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 Appendix B:</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 prpevent 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://authorization-server.example/
]]></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 Appendix B:</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://authorization-server.example/
]]></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>
          </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, no additional parameters beyond <xref target="token-request"/> are required/supported:</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=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 (#refreshing-an-access-token).</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="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>
          </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.  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 Appendix A.4)
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 Appendixes A.7 and A.8) MUST
NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Values for the <tt>error_uri</tt> attribute (specified in Appendix A.9 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
server and the access token issuer to resolve the reference to the
authorization information.  The mechanics of such an interaction are
not defined by this specification.</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="token-replay-prevention">
          <name>Token Replay Prevention</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.</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.
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.
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>A malicious client can impersonate another client and obtain access
to protected resources if the impersonated client fails to, or is
unable to, keep its client credentials confidential.</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 less rights 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 anchor="access-token-replay-prevention">
          <name>Access Token Replay Prevention</name>
          <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>
          <t>Authorization and resource servers SHOULD use mechanisms for
sender-constrained access tokens to prevent token replay as described
in (#pop_tokens). 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). The use of Mutual TLS for OAuth 2.0
<xref target="RFC8705"/> is RECOMMENDED.</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 the resource owner as communicated in the <tt>sub</tt> claim
returned by the authorization server in a token introspection
response <xref target="RFC7662"/> or other mechanisms.  If a client is able to
choose its own <tt>client_id</tt> during registration with the authorization
server, then there is a risk that it can register with the same <tt>sub</tt>
value as a privileged user.  A subsequent access token obtained under
the client credentials grant may be mistaken for an access token
authorized by the privileged user if the resource server does not
perform additional checks.</t>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value 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 Codes</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>
        <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 (#secmodel)) can break the security provided
by this mechanism. Currently, <tt>S256</tt> is the only such method.</t>
        <t>When an authorization code arrives at the token endpoint, the
authorization server MUST do the following check:</t>
        <ol spacing="normal" type="1"><li>If there was a <tt>code_challenge</tt> in the authorization request for which this
code was issued, there must be a <tt>code_verifier</tt> in the token request, and it
MUST be verified according to the steps in <xref target="token-request"/>.
(This is no change from the current behavior in <xref target="RFC7636"/>.)</li>
          <li>If there was no <tt>code_challenge</tt> in the authorization request, any request to
the token endpoint containing a <tt>code_verifier</tt> MUST be rejected.</li>
        </ol>
        <t>Authorization servers MUST provide a way to detect their support for
the <tt>code_challenge</tt> mechanism. To this end, they MUST either (a) publish the element
<tt>code_challenge_methods_supported</tt> in their AS metadata (<xref target="RFC8414"/>)
containing the supported <tt>code_challenge_method</tt>s (which can be used by
the client to detect support) or (b) provide a
deployment-specific way to ensure or determine support by the AS.</t>
      </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. 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
X-Frame-Options 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 Redirectors</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.</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 and access tokens, as described in
(#redir_uri_open_redir). 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 intentionally send an erroneous authorization request, e.g., by
using an invalid scope value, thus instructing the AS to redirect the
user agent to its phishing site.</t>
          <t>The AS MUST take precautions to prevent this threat. Based on its risk
assessment, the AS needs to decide whether it can trust the redirect
URI and 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 anchor="other-recommendations">
        <name>Other Recommendations</name>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner (see (#client_impersonating)).</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 browser are more
secure and can take advantage of the user's authentication state.
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 target="https://www.rfc-editor.org/info/rfc3986" anchor="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" surname="Berners-Lee" initials="T"/>
            <author fullname="R. Fielding" surname="Fielding" initials="R"/>
            <author fullname="L. Masinter" surname="Masinter" initials="L"/>
            <date year="2005" month="January"/>
            <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 target="https://www.rfc-editor.org/info/rfc4949" anchor="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" surname="Shirey" initials="R"/>
            <date year="2007" month="August"/>
            <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="DOI" value="10.17487/RFC4949"/>
          <seriesInfo name="RFC" value="4949"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc5234" anchor="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" surname="Crocker" initials="D"/>
            <author fullname="P. Overell" surname="Overell" initials="P"/>
            <date year="2008" month="January"/>
            <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="DOI" value="10.17487/RFC5234"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="STD" value="68"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc6749" anchor="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" surname="Hardt" initials="D"/>
            <date year="2012" month="October"/>
            <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 target="https://www.rfc-editor.org/info/rfc6750" anchor="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" surname="Jones" initials="M"/>
            <author fullname="D. Hardt" surname="Hardt" initials="D"/>
            <date year="2012" month="October"/>
            <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 target="https://www.rfc-editor.org/info/rfc7159" anchor="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" surname="Bray" initials="T"/>
            <date year="2014" month="March"/>
            <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 target="https://www.rfc-editor.org/info/rfc7235" anchor="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" surname="Fielding" initials="R"/>
            <author fullname="J. Reschke" surname="Reschke" initials="J"/>
            <date year="2014" month="June"/>
            <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 target="https://www.rfc-editor.org/info/rfc7523" anchor="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" surname="Jones" initials="M"/>
            <author fullname="B. Campbell" surname="Campbell" initials="B"/>
            <author fullname="C. Mortimore" surname="Mortimore" initials="C"/>
            <date year="2015" month="May"/>
            <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 target="https://www.rfc-editor.org/info/rfc7595" anchor="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" surname="Thaler" initials="D"/>
            <author fullname="T. Hansen" surname="Hansen" initials="T"/>
            <author fullname="T. Hardie" surname="Hardie" initials="T"/>
            <date year="2015" month="June"/>
            <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="RFC" value="7595"/>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc8174" anchor="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" surname="Leiba" initials="B"/>
            <date year="2017" month="May"/>
            <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="DOI" value="10.17487/RFC8174"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="BCP" value="14"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc8252" anchor="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" surname="Denniss" initials="W"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <date year="2017" month="October"/>
            <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="DOI" value="10.17487/RFC8252"/>
          <seriesInfo name="RFC" value="8252"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc8259" anchor="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" surname="Bray" initials="T"/>
            <date year="2017" month="December"/>
            <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="DOI" value="10.17487/RFC8259"/>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc8446" anchor="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" surname="Rescorla" initials="E"/>
            <date year="2018" month="August"/>
            <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 target="https://www.rfc-editor.org/info/rfc9110" anchor="RFC9110" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9110.xml">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" surname="Fielding" initials="R"/>
            <author fullname="M. Nottingham" surname="Nottingham" initials="M"/>
            <author fullname="J. Reschke" surname="Reschke" initials="J"/>
            <date year="2022" month="June"/>
            <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="DOI" value="10.17487/RFC9110"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="STD" value="97"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc9111" anchor="RFC9111" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9111.xml">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" surname="Fielding" initials="R"/>
            <author fullname="M. Nottingham" surname="Nottingham" initials="M"/>
            <author fullname="J. Reschke" surname="Reschke" initials="J"/>
            <date year="2022" month="June"/>
            <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="RFC" value="9111"/>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc9207" anchor="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" surname="Meyer zu Selhausen" initials="K"/>
            <author fullname="D. Fett" surname="Fett" initials="D"/>
            <date year="2022" month="March"/>
            <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 target="https://www.ietf.org/archive/id/draft-ietf-oauth-security-topics-19.txt" anchor="I-D.ietf-oauth-security-topics" 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">
              <organization>yes.com</organization>
            </author>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Andrey Labunets">
              <organization>Independent Researcher</organization>
            </author>
            <author fullname="Daniel Fett">
              <organization>yes.com</organization>
            </author>
            <date year="2021" month="December" day="16"/>
            <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-19"/>
        </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 target="https://www.rfc-editor.org/info/rfc2119" anchor="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" surname="Bradner" initials="S"/>
            <date year="1997" month="March"/>
            <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="DOI" value="10.17487/RFC2119"/>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc2617" anchor="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" surname="Franks" initials="J"/>
            <author fullname="P. Hallam-Baker" surname="Hallam-Baker" initials="P"/>
            <author fullname="J. Hostetler" surname="Hostetler" initials="J"/>
            <author fullname="S. Lawrence" surname="Lawrence" initials="S"/>
            <author fullname="P. Leach" surname="Leach" initials="P"/>
            <author fullname="A. Luotonen" surname="Luotonen" initials="A"/>
            <author fullname="L. Stewart" surname="Stewart" initials="L"/>
            <date year="1999" month="June"/>
            <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="DOI" value="10.17487/RFC2617"/>
          <seriesInfo name="RFC" value="2617"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference target="https://www.rfc-editor.org/info/rfc6265" anchor="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" surname="Barth" initials="A"/>
            <date year="2011" month="April"/>
            <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="DOI" value="10.17487/RFC6265"/>
          <seriesInfo name="RFC" value="6265"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc6819" anchor="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" surname="Lodderstedt" initials="T"/>
            <author fullname="M. McGloin" surname="McGloin" initials="M"/>
            <author fullname="P. Hunt" surname="Hunt" initials="P"/>
            <date year="2013" month="January"/>
            <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="DOI" value="10.17487/RFC6819"/>
          <seriesInfo name="RFC" value="6819"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc7009" anchor="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" surname="Lodderstedt" initials="T"/>
            <author fullname="S. Dronia" surname="Dronia" initials="S"/>
            <author fullname="M. Scurtescu" surname="Scurtescu" initials="M"/>
            <date year="2013" month="August"/>
            <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 target="https://www.rfc-editor.org/info/rfc7519" anchor="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" surname="Jones" initials="M"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="N. Sakimura" surname="Sakimura" initials="N"/>
            <date year="2015" month="May"/>
            <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="DOI" value="10.17487/RFC7519"/>
          <seriesInfo name="RFC" value="7519"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc7591" anchor="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" surname="Richer" initials="J"/>
            <author fullname="M. Jones" surname="Jones" initials="M"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="M. Machulak" surname="Machulak" initials="M"/>
            <author fullname="P. Hunt" surname="Hunt" initials="P"/>
            <date year="2015" month="July"/>
            <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 target="https://www.rfc-editor.org/info/rfc7592" anchor="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" surname="Richer" initials="J"/>
            <author fullname="M. Jones" surname="Jones" initials="M"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="M. Machulak" surname="Machulak" initials="M"/>
            <date year="2015" month="July"/>
            <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 target="https://www.rfc-editor.org/info/rfc7636" anchor="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" surname="Sakimura" initials="N"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="N. Agarwal" surname="Agarwal" initials="N"/>
            <date year="2015" month="September"/>
            <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="DOI" value="10.17487/RFC7636"/>
          <seriesInfo name="RFC" value="7636"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc7662" anchor="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" surname="Richer" initials="J"/>
            <date year="2015" month="October"/>
            <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 target="https://www.rfc-editor.org/info/rfc8414" anchor="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" surname="Jones" initials="M"/>
            <author fullname="N. Sakimura" surname="Sakimura" initials="N"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <date year="2018" month="June"/>
            <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="DOI" value="10.17487/RFC8414"/>
          <seriesInfo name="RFC" value="8414"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc8628" anchor="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" surname="Denniss" initials="W"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="M. Jones" surname="Jones" initials="M"/>
            <author fullname="H. Tschofenig" surname="Tschofenig" initials="H"/>
            <date year="2019" month="August"/>
            <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="DOI" value="10.17487/RFC8628"/>
          <seriesInfo name="RFC" value="8628"/>
        </reference>
        <reference target="https://www.rfc-editor.org/info/rfc8705" anchor="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" surname="Campbell" initials="B"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="N. Sakimura" surname="Sakimura" initials="N"/>
            <author fullname="T. Lodderstedt" surname="Lodderstedt" initials="T"/>
            <date year="2020" month="February"/>
            <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 target="https://www.rfc-editor.org/info/rfc8707" anchor="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" surname="Campbell" initials="B"/>
            <author fullname="J. Bradley" surname="Bradley" initials="J"/>
            <author fullname="H. Tschofenig" surname="Tschofenig" initials="H"/>
            <date year="2020" month="February"/>
            <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 target="https://www.rfc-editor.org/info/rfc9068" anchor="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" surname="Bertocci" initials="V"/>
            <date year="2021" month="October"/>
            <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 target="https://www.rfc-editor.org/info/rfc9126" anchor="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" surname="Lodderstedt" initials="T"/>
            <author fullname="B. Campbell" surname="Campbell" initials="B"/>
            <author fullname="N. Sakimura" surname="Sakimura" initials="N"/>
            <author fullname="D. Tonge" surname="Tonge" initials="D"/>
            <author fullname="F. Skokan" surname="Skokan" initials="F"/>
            <date year="2021" month="September"/>
            <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="DOI" value="10.17487/RFC9126"/>
          <seriesInfo name="RFC" value="9126"/>
        </reference>
        <reference target="https://www.ietf.org/archive/id/draft-ietf-oauth-rar-12.txt" anchor="I-D.ietf-oauth-rar" 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">
              <organization>yes.com</organization>
            </author>
            <author fullname="Justin Richer">
              <organization>Bespoke Engineering</organization>
            </author>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date year="2022" month="May"/>
            <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-12"/>
        </reference>
        <reference target="https://www.ietf.org/archive/id/draft-bradley-oauth-jwt-encoded-state-09.txt" anchor="I-D.bradley-oauth-jwt-encoded-state" 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">
              <organization>Yubico</organization>
            </author>
            <author fullname="Dr.-Ing. Torsten Lodderstedt">
              <organization>YES.com AG</organization>
            </author>
            <author fullname="Hans Zandbelt">
              <organization>ZmartZone IAM</organization>
            </author>
            <date year="2018" month="November"/>
            <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 target="https://www.ietf.org/archive/id/draft-ietf-oauth-token-binding-08.txt" anchor="I-D.ietf-oauth-token-binding" 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 B. Jones">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="William Denniss">
              <organization>Google</organization>
            </author>
            <date year="2018" month="October" day="19"/>
            <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 target="https://www.ietf.org/archive/id/draft-ietf-oauth-browser-based-apps-09.txt" anchor="I-D.ietf-oauth-browser-based-apps" 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">
              <organization>Okta</organization>
            </author>
            <author fullname="David Waite">
              <organization>Ping Identity</organization>
            </author>
            <date year="2022" month="March"/>
            <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.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-09"/>
        </reference>
        <reference target="https://www.ietf.org/archive/id/draft-ietf-oauth-dpop-10.txt" anchor="I-D.ietf-oauth-dpop" 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">
              <organization>yes.com</organization>
            </author>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author fullname="Michael Jones">
              <organization>Microsoft</organization>
            </author>
            <author fullname="David Waite">
              <organization>Ping Identity</organization>
            </author>
            <date year="2022" month="July" day="11"/>
            <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-10"/>
        </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.oatc.us/Standards/Download-Standards">
          <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="April"/>
          </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="errordescription-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="erroruri-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="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>TBD</t>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <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:
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
u/P9sr6Yl9MzF4s0Fy/KzSA+nGnciSzr0QwU1rqTxUEXmeIGnI1Tb4DRicxI
EI/4J/DCzsoLdEuBroHcx4WcT8slMIZ1O3Svp53zYXO7t+EmeNaDJLHGDPoF
iGsTDQi0klirNSRZb9YUxEFCrpB6mnpzdp6mIn9RWWep13xu88uMYuA6Rs1E
1g5Fr09fEmF+r4XfkmWWZa8t+2WCsAQSs7nAKZrrYOkgoVm5xJV61TF4MItf
BSR2EW7rhXqlJxLlsN9mp1j5QLkapHVIpgCcREt2gxnZEKddT8Z+0SmTwBwf
WhZNU1/g9SBX2m7oI3IJBwUaKKDZNpmGT2lVQIfw6Ap0B6aVloNNugvdiCXf
UQxfPVOfZSgfyd280skz85lWYACWJjKVVGU84zp1Z0RhG1TxV+TCw1SEkDEN
s+43wqmGQI7zalIJE6r6HZW4+xkyBY63gbGK3uECF5mydYzTli5zY0lMgw5i
v06ZJJyDNzIOdqtxOR4Sy0GNzytpMqZkzrN+hg7lw+5uw9GuG86+udpmIALO
unSfMpB13IqlBZAd8t96VcD2hqOMRfu2M5ODROWU6HVWUeYZ3yCghqYCrp4g
Bhvdqtn7yeUF7CMOg198hzOd6LotMUXwzXJevY/cpZEaR5yAfBHLqYnWkgDj
wHPKEaycQCUSyhuTpWGdrsbvcm3vzXZPTuxkHYkbK+3ptA6twKF0bV9W8NiW
YcTl6v4kHYV97sLe2fw6FAPXns0vtKhtz5mj+e0Vw4j7NrUp9mh++jtm8wXD
sDM37Xr8yf+Dh4kdy9fzKf/kvZ9+NtYfmnDF/n9lb+7C3jwT0cxzeQKytclH
v9BsvoButg0TP7ZlGNjie8HVDO+U+eafxCi+/tmMIslEf52/VFUjyS2u5Q7v
ilr1icuYIrifkKo2DWat/vF+Z3hKkP9s5/Yv71pMO6yM4/k/1bPoUiNUo6Qs
60CQdz2xi+I9qWX9eQip/GZd2pW+xtv/OF8jelGP2At4S7yAtweo1mEFDtiW
1bxryIkB4XRV6/VGozeRrciPTElTbd9Xq5YT4FEFvTf4HQ3gXAL0I9nRJavH
/fsqnlifkxa8tnKGT1QLIBsIOuGmkbo+cmkyJ5Y5IyeG8e/1XY2uLdY9yYBw
HG2xWY6/USIOrXw4OJsHJ5ZJUChxHO57NICk+ktaFmiPzqqxPuTLVenJfUtS
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
2DAjoAq3IBEsyGS6nkzCfwI3pSwC8WsCAA==

-->

</rfc>
