<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.30 (Ruby 3.4.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-15" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-15"/>
    <author initials="D." surname="Hardt" fullname="Dick Hardt">
      <organization>Hellō</organization>
      <address>
        <email>dick.hardt@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
      <organization>SPRIND</organization>
      <address>
        <email>torsten@lodderstedt.net</email>
      </address>
    </author>
    <date year="2026" month="March" day="02"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 181?>

<t>The OAuth 2.1 authorization framework enables an
application to obtain limited access to a protected resource, either on
behalf of a resource owner by orchestrating an approval interaction
between the resource owner and an authorization service, or by allowing the
application to obtain access on its own behalf.  This
specification replaces and obsoletes the OAuth 2.0 Authorization
Framework described in RFC 6749 and the Bearer Token Usage in RFC 6750.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    OAuth Working Group mailing list (oauth@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/oauth-wg/oauth-v2-1"/>.</t>
    </note>
  </front>
  <middle>
    <?line 191?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>OAuth introduces an authorization layer to the client-server authentication model
by separating the role of the client from that of the resource
owner. In OAuth, the client requests access to resources controlled
by the resource owner and hosted by the resource server.
Instead of using the resource owner's credentials to access protected
resources, the client obtains an access token - a credential representing
a specific set of access attributes such as scope and lifetime. Access
tokens are issued to clients by an authorization server with the approval
of the resource owner. The client uses the access token to access the
protected resources hosted by the resource server.</t>
      <t>In the older, more limited client-server authentication model, the client
requests an access-restricted resource (protected resource) on the
server by authenticating to the server using the resource owner's
credentials.  In order to provide applications access to
restricted resources, the resource owner shares their credentials with
the application.  This creates several problems and limitations:</t>
      <ul spacing="normal">
        <li>
          <t>Applications are required to store the resource
owner's credentials for future use, typically a password in
clear-text.</t>
        </li>
        <li>
          <t>Servers are required to support password authentication, despite
the security weaknesses inherent in passwords.</t>
        </li>
        <li>
          <t>Applications gain overly broad access to the resource
owner's protected resources, leaving resource owners without any
ability to restrict duration or access to a limited subset of
resources.</t>
        </li>
        <li>
          <t>Resource owners often reuse passwords with other unrelated
services, despite best security practices. This password reuse means
a vulnerability or exposure in one service may have security
implications in completely unrelated services.</t>
        </li>
        <li>
          <t>Resource owners cannot revoke access to an individual application
without revoking access to all third parties, and must do so by
changing their password.</t>
        </li>
        <li>
          <t>Compromise of any application results in compromise of
the end-user's password and all of the data protected by that
password.</t>
        </li>
      </ul>
      <t>An example where OAuth is used is where an end user (resource owner) grants a financial management
service (client) access to their sensitive transaction history stored at
a banking service (resource server), without sharing their username and
password with the financial management service. Instead, they authenticate
directly with their financial institution's server (authorization server),
which issues the financial management service delegation-specific credentials
(access token).</t>
      <t>This separation of concerns also provides the ability to use more advanced
user authentication methods such as multi-factor authentication and even
passwordless authentication, without any modification to the applications.
With all user authentication logic handled by the authorization server,
applications don't need to be concerned with the specifics of implementing
any particular authentication mechanism. This provides the ability for the
authorization server to manage the user authentication policies and
even change them in the future without coordinating the changes with applications.</t>
      <t>The authorization layer can also simplify how a resource server determines
if a request is authorized. Traditionally, after authenticating the client,
each resource server would evaluate policies to compute if the client is authorized
on each API call. In a distributed system, the policies need to be synchronized
to all the resource servers, or the resource server must call a central policy
server to process each request. In OAuth, evaluation of the policies is performed
only when a new access token is created by the authorization server. If the
authorized access is represented in the access token, the resource server no longer
needs to evaluate the policies, and only needs to validate the access token.
This simplification applies when the application is acting on behalf of a resource
owner, or on behalf of itself.</t>
      <t>OAuth is an authorization protocol, not an authentication protocol, as OAuth does not define the necessary components to achieve user authentication.
An authentication protocol is necessary if the goal is to authenticate users. An example is OpenID Connect <xref target="OpenID.Connect"/>, which builds on OAuth to provide the security
characteristics and necessary components required of an authentication protocol.</t>
      <t>The
access token represents the authorization granted to the client. It is a common
practice for the client to present the access token to a proprietary API which
returns a user identifier for the resource owner, and then using the result of
the API as a proxy for authenticating the user. This practice is not part of
the OAuth standard or security considerations, and may not have been considered
by the resource owner. Implementors should carefully consult the documentation
of the resource server before adopting this practice.</t>
      <t>This specification is designed for use with HTTP <xref target="RFC9110"/>.  The
use of OAuth over any protocol other than HTTP is out of scope.</t>
      <t>Since the publication of the OAuth 2.0 Authorization Framework <xref target="RFC6749"/>
in October 2012, it has been updated by OAuth 2.0 for Native Apps <xref target="RFC8252"/>,
OAuth Security Best Current Practice <xref target="RFC9700"/>,
and OAuth 2.0 for Browser-Based Apps <xref target="I-D.ietf-oauth-browser-based-apps"/>.
The OAuth 2.0 Authorization Framework: Bearer Token Usage <xref target="RFC6750"/>
has also been updated with <xref target="RFC9700"/>. This
Standards Track specification consolidates the information in all of these
documents and removes features that have been found to be insecure
in <xref target="RFC9700"/>.</t>
      <section anchor="roles">
        <name>Roles</name>
        <t>OAuth defines four roles:</t>
        <dl>
          <dt>"resource owner":</dt>
          <dd>
            <t>An entity capable of granting access to a protected resource.
When the resource owner is a person, it is referred to as an
end user. This is sometimes abbreviated as "RO".</t>
          </dd>
          <dt>"resource server":</dt>
          <dd>
            <t>The server hosting the protected resources, capable of accepting
and responding to protected resource requests using access tokens.
The resource server is often accessible via an API.
This is sometimes abbreviated as "RS".</t>
          </dd>
          <dt>"client":</dt>
          <dd>
            <t>An application making protected resource requests on behalf of the
resource owner and with its authorization.  The term "client" does
not imply any particular implementation characteristics (e.g.,
whether the application executes on a server, a desktop, or other
devices).</t>
          </dd>
          <dt>"authorization server":</dt>
          <dd>
            <t>The server issuing access tokens to the client after successfully
authenticating the resource owner and obtaining authorization.
This is sometimes abbreviated as "AS".</t>
          </dd>
        </dl>
        <t>Most of this specification defines the interaction between the client
and the authorization server, as well as between the client and resource server.</t>
        <t>The interaction between the authorization server and resource server
is beyond the scope of this specification, however several extensions have
been defined to provide an option for interoperability between resource
servers and authorization servers.  The authorization server
may be the same server as the resource server or a separate entity.
A single authorization server may issue access tokens accepted by
multiple resource servers.</t>
        <t>The interaction between the resource owner and authorization server
(e.g. how the end user authenticates themselves at the authorization server)
is also out of scope of this specification, with some exceptions, such as
security considerations around prompting the end user for consent.</t>
        <t>When the resource owner is the end user, the user will interact with
the client. When the client is a web-based application, the user will
interact with the client through a user agent (as described in <xref section="3.5" sectionFormat="of" target="RFC9110"/>).
When the client is a native application, the user will interact with
the client directly through the operating system. See <xref target="client-types"/>
for further details.</t>
      </section>
      <section anchor="protocol-flow">
        <name>Protocol Flow</name>
        <figure anchor="fig-protocol-flow">
          <name>Abstract Protocol Flow</name>
          <artwork><![CDATA[
     +--------+                               +---------------+
     |        |--(1)- Authorization Request ->|   Resource    |
     |        |                               |     Owner     |
     |        |<-(2)-- Authorization Grant ---|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(3)-- Authorization Grant -->| Authorization |
     | Client |                               |     Server    |
     |        |<-(4)----- Access Token -------|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(5)----- Access Token ------>|    Resource   |
     |        |                               |     Server    |
     |        |<-(6)--- Protected Resource ---|               |
     +--------+                               +---------------+
]]></artwork>
        </figure>
        <t>The abstract OAuth 2.1 flow illustrated in <xref target="fig-protocol-flow"/> describes the
interaction between the four roles and includes the following steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>The client requests authorization from the resource owner.  The
authorization request can be made directly to the resource owner
(as shown), or preferably indirectly via the authorization
server as an intermediary.</t>
          </li>
          <li>
            <t>The client receives an authorization grant, which is a
credential representing the resource owner's authorization,
expressed using one of the authorization grant types defined in this
specification or using an extension grant type.  The
authorization grant type depends on the method used by the
client to request authorization and the types supported by the
authorization server.</t>
          </li>
          <li>
            <t>The client requests an access token by authenticating with the
authorization server and presenting the authorization grant.</t>
          </li>
          <li>
            <t>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token.</t>
          </li>
          <li>
            <t>The client requests the protected resource from the resource
server and authenticates by presenting the access token.</t>
          </li>
          <li>
            <t>The resource server validates the access token, and if valid,
serves the request.</t>
          </li>
        </ol>
        <t>The preferred method for the client to obtain an authorization grant
from the resource owner (depicted in steps (1) and (2)) is to use the
authorization server as an intermediary, which is illustrated in
<xref target="fig-authorization-code-flow"/> in <xref target="authorization-code-grant"/>.</t>
      </section>
      <section anchor="authorization-grant">
        <name>Authorization Grant</name>
        <t>An authorization grant represents the resource
owner's authorization (to access its protected resources) used by the
client to obtain an access token.  This specification defines three
grant types -- authorization code, refresh token,
and client credentials -- as well as an extensibility
mechanism for defining additional types.</t>
        <section anchor="authorization-code">
          <name>Authorization Code</name>
          <t>An authorization code is a temporary credential used to obtain an access token.
Instead of the client
requesting authorization directly from the resource owner, the client
directs the resource owner to an authorization server (via its
user agent) which in turn directs the
resource owner back to the client with the authorization code.
The client can then exchange the authorization code for an access token.</t>
          <t>Before directing the resource owner back to the client with the
authorization code, the authorization server authenticates the
resource owner, and may request the resource owner's consent or otherwise
inform them of the client's request. Because the resource owner
only authenticates with the authorization server, the resource
owner's credentials are never shared with the client, and the client
does not need to have knowledge of any additional authentication steps
such as multi-factor authentication or delegated accounts.</t>
          <t>The authorization code provides a few important security benefits,
such as the ability to authenticate the client, as well as the
transmission of the access token directly to the client without
passing it through the resource owner's user agent and potentially
exposing it to others, including the resource owner.</t>
        </section>
        <section anchor="refresh-token">
          <name>Refresh Token</name>
          <t>Refresh tokens are credentials used to obtain access tokens.  Refresh
tokens may be issued to the client by the authorization server and are
used to obtain a new access token when the current access token
becomes invalid or expires, or to obtain additional access tokens
with identical or narrower scope (access tokens may have a shorter
lifetime and fewer privileges than authorized by the resource
owner).  Issuing a refresh token is optional at the discretion of the
authorization server, and may be issued based on properties of the client,
properties of the request, policies within the authorization server, or
any other criteria.  If the authorization server issues a refresh
token, it is included when issuing an access token (i.e., step (2) in
<xref target="fig-refresh-token-flow"/>). The lifetime of the refresh token is also
at the discretion of the authorization server.</t>
          <t>A refresh token is a string representing the authorization granted to
the client by the resource owner.  The string is considered opaque to
the client. The refresh token may be an identifier used to retrieve the
authorization information or may encode this information into the
string itself. Unlike access tokens, refresh tokens are
intended for use only with authorization servers and are never sent
to resource servers.</t>
          <figure anchor="fig-refresh-token-flow">
            <name>Refreshing an Expired Access Token</name>
            <artwork><![CDATA[
+--------+                                           +---------------+
|        |--(1)------- Authorization Grant --------->|               |
|        |                                           |               |
|        |<-(2)----------- Access Token -------------|               |
|        |               & Refresh Token             |               |
|        |                                           |               |
|        |                            +----------+   |               |
|        |--(3)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(4)- Protected Resource --| Resource |   | Authorization |
| Client |                            |  Server  |   |     Server    |
|        |--(5)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(6)- Invalid Token Error -|          |   |               |
|        |                            +----------+   |               |
|        |                                           |               |
|        |--(7)----------- Refresh Token ----------->|               |
|        |                                           |               |
|        |<-(8)----------- Access Token -------------|               |
+--------+           & Optional Refresh Token        +---------------+
]]></artwork>
          </figure>
          <t>The flow illustrated in <xref target="fig-refresh-token-flow"/> includes the following steps:</t>
          <ol spacing="normal" type="1"><li>
              <t>The client requests an access token by authenticating with the
authorization server and presenting an authorization grant.</t>
            </li>
            <li>
              <t>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token
and optionally a refresh token.</t>
            </li>
            <li>
              <t>The client makes a protected resource request to the resource
server by presenting the access token.</t>
            </li>
            <li>
              <t>The resource server validates the access token, and if valid,
serves the request.</t>
            </li>
            <li>
              <t>Steps (3) and (4) repeat until the access token expires.  If the
client knows the access token expired, it skips to step (7);
otherwise, it makes another protected resource request.</t>
            </li>
            <li>
              <t>Since the access token is invalid, the resource server returns
an invalid token error.</t>
            </li>
            <li>
              <t>The client requests a new access token by presenting the refresh token
and providing client authentication if it has been issued credentials. The
client authentication requirements are based on the client type
and on the authorization server policies.</t>
            </li>
            <li>
              <t>The authorization server authenticates the client and validates
the refresh token, and if valid, issues a new access token (and,
optionally, a new refresh token).</t>
            </li>
          </ol>
          <t>Note that there is no need to communicate the lifetime of the refresh
token to the client, because the client can't do anything different with
the knowledge of the lifetime. Additionally, the authorization server
might choose to use dynamic lifetimes (e.g. the refresh token expiry
is extended as long as the refresh token is used at least once every 7 days),
or the authorization server might revoke the refresh token before
its scheduled expiration date for any reason, such as if the user
revokes the application's access. This means the client already has
to handle the case of a refresh token expiring at an arbitrary time.</t>
          <t>Regardless of why or when the refresh token expires, the client
has only one path to obtain new tokens, which is to start a new
OAuth flow from the beginning. For that reason, there is no property
defined to communicate the expiration of a refresh token to the client.</t>
        </section>
        <section anchor="client-credentials">
          <name>Client Credentials</name>
          <t>The client credentials or other forms of client authentication
(e.g., a private key used to sign a JWT, as described in <xref target="RFC7523"/>
and its update <xref target="I-D.ietf-oauth-rfc7523bis"/>)
can be used as an authorization grant when the authorization scope is
limited to the protected resources under the control of the client,
or to protected resources previously arranged with the authorization
server.  Client credentials are used when the client is requesting
access to protected resources based on an authorization previously
arranged with the authorization server.</t>
        </section>
      </section>
      <section anchor="access-tokens">
        <name>Access Token</name>
        <t>Access tokens are credentials used to access protected resources.  An
access token is a string representing an authorization issued to the
client.</t>
        <t>The string is considered opaque to the client, even if it has
a structure. The client MUST NOT expect to be able to parse the access
token value. The authorization server is not required to use a
consistent access token encoding or format other than what is
expected by the resource server.</t>
        <t>The access granted by the resource owner to the client is represented by
the Access Token created by the authorization server. Access Tokens are
short lived to reduce the blast radius of a leaked Access Token. The expiration
of the Access Token is set by the authorization server.</t>
        <t>Depending on the authorization server implementation,
the token string may be used by the resource server to retrieve the authorization information,
or the token may self-contain the authorization information in a verifiable
manner (i.e., a token string consisting of a signed data payload). One example
of a token retrieval mechanism is Token Introspection <xref target="RFC7662"/>, in which the
RS calls an endpoint on the AS to validate the token presented by the client.
One example of a structured token format is JWT Profile for Access Tokens <xref target="RFC9068"/>,
a method of encoding and signing access token data as a JSON Web Token <xref target="RFC7519"/>.</t>
        <t>Additional authentication credentials, which are beyond
the scope of this specification, may be required in order for the
client to use an access token. This is typically referred to as a sender-constrained
access token, such as DPoP <xref target="RFC9449"/> and
Mutual TLS Certificate-Bound Access Tokens <xref target="RFC8705"/>.</t>
        <t>The access token provides an abstraction layer, replacing different
authorization constructs (e.g., username and password) with a single
token understood by the resource server.  This abstraction enables
issuing access tokens more restrictive than the authorization grant
used to obtain them, as well as removing the resource server's need
to understand a wide range of authentication methods.</t>
        <t>Access tokens can have different formats, structures, and methods of
utilization (e.g., cryptographic properties) based on the resource
server security requirements.  Access token attributes and the
methods used to access protected resources may be extended beyond
what is described in this specification.</t>
        <t>Access tokens (as well as any confidential access token
attributes) MUST be kept confidential in transit and storage, and
only shared among the authorization server, the resource servers the
access token is valid for, and the client to which the access token is
issued.</t>
        <t>The authorization server MUST ensure that access tokens cannot be
generated, modified, or guessed to produce valid access tokens by
unauthorized parties.</t>
        <section anchor="access-token-scope">
          <name>Access Token Scope</name>
          <t>Access tokens are intended to be issued to clients with less privileges
than the user granting the access has. This is known as a limited "scope"
access token. The authorization server and resource server can use this
scope mechanism to limit what types of resources or level of access a particular client
can have.</t>
          <t>For example, a client may only need "read" access to a user's
resources, but doesn't need to update resources, so the client can request
the read-only scope defined by the authorization server, and obtain
an access token that cannot be used to update resources. This requires
coordination between the authorization server, resource server, and client. The
authorization server provides the client the ability to request specific
scopes, and associates those scopes with the access token issued to the client.
The resource server is then responsible for enforcing scopes when presented
with a limited-scope access token.</t>
          <t>OAuth does not define any scope values, instead scopes are defined by the
authorization server or by extensions or profiles of OAuth. One such extension
that defines scopes is <xref target="OpenID.Connect"/>, which defines a set of scopes that provide
granular access to a user's profile information. It is recommended to avoid
defining custom scopes that conflict with scopes from known extensions.</t>
          <t>To request a limited-scope access token, the client uses the <tt>scope</tt>
request parameter at the authorization or token endpoints, depending on
the grant type used. In turn, the authorization server uses the <tt>scope</tt>
response parameter to inform the client of the scope of the access token issued.</t>
          <t>The value of the scope parameter is expressed as a space-
delimited list of case-sensitive strings.  The strings are defined by the
authorization server.  If the value contains multiple space-delimited
strings, their order does not matter, and each string adds an
additional access range to the requested scope.</t>
          <sourcecode type="abnf"><![CDATA[
    scope       = scope-token *( SP scope-token )
    scope-token = 1*( %x21 / %x23-5B / %x5D-7E )
]]></sourcecode>
          <t>The authorization server MAY fully or partially ignore the scope
requested by the client, based on the authorization server policy or
the resource owner's instructions.  If the issued access token scope
is different from the one requested by the client, the authorization
server MUST include the <tt>scope</tt> response parameter in the token response
(<xref target="token-response"/>) to inform the client of the actual scope granted.</t>
          <t>If the client omits the scope parameter when requesting
authorization, the authorization server MUST either process the
request using a pre-defined default value or fail the request
indicating an invalid scope.  The authorization server SHOULD
document its scope requirements and default value (if defined).</t>
        </section>
        <section anchor="bearer-tokens">
          <name>Bearer Tokens</name>
          <t>A Bearer Token is a security token with the property that any party
in possession of the token (a "bearer") can use the token in any way
that any other party in possession of it can.  Using a Bearer Token
does not require a bearer to prove possession of cryptographic key material
(proof-of-possession).</t>
          <t>Bearer Tokens may be enhanced with proof-of-possession specifications such
as DPoP <xref target="RFC9449"/> and mTLS <xref target="RFC8705"/> to provide proof-of-possession characteristics.</t>
          <t>To protect against access token disclosure, the
communication interaction between the client and the resource server
MUST utilize confidentiality and integrity protection as described in
<xref target="communication-security"/>.</t>
          <t>There is no requirement on the particular structure or format of a bearer token. If a bearer token is a reference to authorization information, such references MUST be infeasible for an attacker to guess, such as using a sufficiently long cryptographically random string. If a bearer token uses an encoding mechanism to contain the authorization information in the token itself, the access token MUST use integrity protection sufficient to prevent the token from being modified. One example of an encoding and signing mechanism for access tokens is described in JSON Web Token Profile for Access Tokens <xref target="RFC9068"/>.</t>
        </section>
        <section anchor="sender-constrained-tokens">
          <name>Sender-Constrained Access Tokens</name>
          <t>A sender-constrained access token binds the use of an
access token to a specific sender.  This sender is obliged to
demonstrate knowledge of a certain secret as prerequisite for the
acceptance of that access token at the recipient (e.g., a resource server).</t>
          <t>Authorization and resource servers SHOULD use mechanisms for
sender-constraining access tokens, such as OAuth Demonstration of Proof of Possession (DPoP) <xref target="RFC9449"/>
or Mutual TLS for OAuth 2.0 <xref target="RFC8705"/>.
See <xref section="4.10.1" sectionFormat="of" target="RFC9700"/> to prevent misuse of stolen and leaked access tokens.</t>
          <t>It is RECOMMENDED to use end-to-end TLS between the client and the
resource server. If TLS traffic needs to be terminated at an intermediary,
refer to <xref section="4.13" sectionFormat="of" target="RFC9700"/> for further security advice.</t>
        </section>
      </section>
      <section anchor="communication-security">
        <name>Communication security</name>
        <t>Implementations MUST use a mechanism to provide communication
authentication, integrity and confidentiality such as
Transport-Layer Security <xref target="RFC8446"/>,
to protect the exchange of clear-text credentials and tokens
either in the content or in header fields
from eavesdropping which enables replay
(e.g., see <xref target="client-secret"/>, <xref target="authorization_codes"/>, <xref target="token-endpoint"/>, and <xref target="bearer-tokens"/>).</t>
        <t>All the OAuth protocol URLs (URLs exposed by the AS, RS and Client) MUST use the <tt>https</tt> scheme
except for loopback interface redirect URIs,
which MAY use the <tt>http</tt> scheme.
When using <tt>https</tt>, TLS certificates MUST be checked
according to <xref section="4.3.4" sectionFormat="of" target="RFC9110"/>.
At the time of this writing,
TLS version 1.3 <xref target="RFC8446"/> is the most recent version.</t>
        <t>Implementations MAY also support additional transport-layer security
mechanisms that meet their security requirements.</t>
        <t>The identification of the TLS versions and algorithms
is outside the scope of this specification.
Refer to <xref target="BCP195"/> for up to date recommendations on
transport layer security, and to the relevant specifications
for certificate validation and other security considerations.</t>
      </section>
      <section anchor="http-redirections">
        <name>HTTP Redirections</name>
        <t>This specification makes extensive use of HTTP redirections, in which
the client or the authorization server directs the resource owner's
user agent to another destination.  While the examples in this
specification show the use of the HTTP 302 status code, any other
method available via the user agent to accomplish this redirection,
with the exception of HTTP 307, is allowed and is considered to be an
implementation detail. See <xref target="redirect_307"/> for details.</t>
      </section>
      <section anchor="interoperability">
        <name>Interoperability</name>
        <t>OAuth 2.1 provides a rich authorization framework with well-defined
security properties.</t>
        <t>This specification leaves a few required components partially or fully
undefined (e.g., client registration, authorization server capabilities,
endpoint discovery).  Some of these behaviors are defined in optional
extensions which implementations can choose to use, such as:</t>
        <ul spacing="normal">
          <li>
            <t><xref target="RFC8414"/>: Authorization Server Metadata, defining an endpoint clients can use to look up the information needed to interact with a particular OAuth server</t>
          </li>
          <li>
            <t><xref target="RFC7591"/>: Dynamic Client Registration, providing a mechanism for programmatically registering clients with an authorization server</t>
          </li>
          <li>
            <t><xref target="RFC7592"/>: Dynamic Client Management, providing a mechanism for updating dynamically registered client information</t>
          </li>
          <li>
            <t><xref target="RFC7662"/>: Token Introspection, defining a mechanism for resource servers to obtain information about access tokens</t>
          </li>
        </ul>
        <t>Please refer to <xref target="extensions"/> for a list of current known extensions at
the time of this publication.</t>
      </section>
      <section anchor="compatibility-with-oauth-20">
        <name>Compatibility with OAuth 2.0</name>
        <t>OAuth 2.1 is compatible with OAuth 2.0 with the extensions and restrictions
from known best current practices applied. Specifically, features not specified
in OAuth 2.0 core, such as PKCE, are required in OAuth 2.1. Additionally,
some features available in OAuth 2.0, such as the Implicit or Resource Owner Credentials
grant types, are not specified in OAuth 2.1. Furthermore, some behaviors
allowed in OAuth 2.0 are restricted in OAuth 2.1, such as the strict string
matching of redirect URIs required by OAuth 2.1.</t>
        <t>See <xref target="oauth-2-0-differences"/> for more details on the differences from OAuth 2.0.</t>
      </section>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
        </t>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF)
notation of <xref target="RFC5234"/>.  Additionally, the rule URI-reference is
included from "Uniform Resource Identifier (URI): Generic Syntax"
<xref target="RFC3986"/>.</t>
        <t>Certain security-related terms are to be understood in the sense
defined in <xref target="RFC4949"/>.  These terms include, but are not limited to,
"attack", "authentication", "authorization", "certificate",
"confidentiality", "credential", "encryption", "identity", "sign",
"signature", "trust", "validate", and "verify".</t>
        <t>The term "content" is to be interpreted as described in <xref section="6.4" sectionFormat="of" target="RFC9110"/>.</t>
        <t>The term "user agent" is to be interpreted as described in <xref section="3.5" sectionFormat="of" target="RFC9110"/>.</t>
        <t>Unless otherwise noted, all the protocol parameter names and values
are case sensitive.</t>
      </section>
    </section>
    <section anchor="client-registration">
      <name>Client Registration</name>
      <t>Before initiating the protocol, the client must have established an identifier (<xref target="client-identifier"/>) at the
authorization server. The means through which the client identifier is established
with the authorization server are beyond the scope of this
specification, but typically involve the client developer manually registering
the client at the authorization server's website (after creating an account and agreeing
to the service's Terms of Service), or by using Dynamic Client Registration <xref target="RFC7591"/>.
Extensions may also define other programmatic methods of establishing client registration.</t>
      <t>Client registration does not require a direct interaction between the
client and the authorization server.  When supported by the
authorization server, registration can rely on other means for
establishing trust and obtaining the required client properties
(e.g., redirect URI, client type).  For example, registration can
be accomplished using a self-issued or third-party-issued assertion,
or by the authorization server performing client discovery using a
trusted channel.</t>
      <t>Client registration MUST include:</t>
      <ul spacing="normal">
        <li>
          <t>the client type as described in <xref target="client-types"/>,</t>
        </li>
        <li>
          <t>client details needed by the grant type in use,
such as redirect URIs as described in <xref target="redirection-endpoint"/>, and</t>
        </li>
        <li>
          <t>any other information required by the authorization server
(e.g., application name, website, description, logo image, the
acceptance of legal terms).</t>
        </li>
      </ul>
      <t>Dynamic Client Registration <xref target="RFC7591"/> defines a common general data model
for clients that may be used even with manual client registration.</t>
      <section anchor="client-types">
        <name>Client Types</name>
        <t>OAuth 2.1 defines two client types based on their ability to authenticate securely
with the authorization server.</t>
        <dl>
          <dt>"confidential":</dt>
          <dd>
            <t>Clients that have credentials with the AS are designated as "confidential clients"</t>
          </dd>
          <dt>"public":</dt>
          <dd>
            <t>Clients without credentials are called "public clients"</t>
          </dd>
        </dl>
        <t>Any clients with credentials MUST take precautions to prevent leakage and abuse of their credentials.</t>
        <t>Client authentication allows an Authorization Server to ensure it is interacting with a certain client
(identified by its <tt>client_id</tt>) in an OAuth flow. The Authorization Server might make policy decisions
about things such as whether to prompt the user for consent on every authorization or only the first
based on the confidence that the Authorization Server is actually communicating with the legitimate client.</t>
        <t>Whether and how an Authorization Server validates the identity of a client or the party
providing/operating this client is out of scope of this specification.
Authorization servers SHOULD consider the level of confidence in a client's identity
when deciding whether they allow a client access to more sensitive resources and operations
such as the Client Credentials grant type and how often to prompt the user for consent.</t>
        <t>There is no requirement that an Authorization Server supports a particular client 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
are protected from other applications residing on the same
device. If such applications wish to use
client credentials, it is recommended to utilize the
backend for frontend pattern, or issue the credentials at runtime
using Dynamic Client Registration <xref target="RFC7591"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="client-identifier">
        <name>Client Identifier</name>
        <t>Every client is identified in the context of an authorization server
by a client identifier -- a unique string representing the registration
information provided by the client. While the Authorization Server typically
issues the client identifier itself, it may also serve clients whose client identifier
was created by a party other than the Authorization Server. The client identifier is not a
secret; it is exposed to the resource owner and MUST NOT be used
alone for client authentication.  The client identifier is unique in the
context of an authorization server.</t>
        <t>The client identifier is an opaque string whose size is left undefined by this
specification.  The client should avoid making assumptions about the
identifier size.  The authorization server SHOULD document the size
of any identifier it issues.</t>
        <t>If the authorization server supports clients with client identifiers issued by
parties other than the authorization server, the authorization server SHOULD
take precautions to avoid clients impersonating resource owners as described
in <xref target="client-impersonating-resource-owner"/>.</t>
      </section>
      <section anchor="redirection-endpoint">
        <name>Client Redirection Endpoint</name>
        <t>The client redirection endpoint (also referred to as "redirect endpoint")
is the URI of the client that the authorization server redirects the user
agent back to after completing its interaction with the resource owner.</t>
        <t>The authorization server redirects the user agent to one of the
client's redirection endpoints previously established with the
authorization server during the client registration process.</t>
        <t>The redirect URI MUST be an absolute URI as defined by
<xref section="4.3" sectionFormat="of" target="RFC3986"/>.  The redirect URI MAY include an
query string component (<xref target="query-string-serialization"/>), which MUST be retained when adding
additional query parameters. The redirect URI MUST NOT include a
fragment component.</t>
        <section anchor="registration-requirements">
          <name>Registration Requirements</name>
          <t>Authorization servers MUST require clients to register their complete
redirect URI (including the path component). Authorization servers
MUST reject authorization requests that specify a redirect URI that
doesn't exactly match one that was registered, with an exception for
loopback redirects, where an exact match is required except for the
port URI component, see <xref target="authorization-request"/> for details.</t>
          <t>The authorization server MAY allow the client to register multiple
redirect URIs.</t>
          <t>Registration may happen out of band, such as a manual step of configuring
the client information at the authorization server, or may happen at
runtime, such as in the initial POST in Pushed Authorization Requests <xref target="RFC9126"/>.</t>
          <t>For private-use URI scheme-based redirect URIs, authorization servers
SHOULD enforce the requirement in <xref target="private-use-uri-scheme"/> that clients use
schemes that are reverse domain name based.  At a minimum, any
private-use URI scheme that doesn't contain a period character (<tt>.</tt>)
SHOULD be rejected.</t>
          <t>In addition to the collision-resistant properties,
this can help to prove ownership in the event of a dispute where two apps
claim the same private-use URI scheme (where one app is acting
maliciously).  For example, if two apps claimed <tt>com.example.app</tt>,
the owner of <tt>example.com</tt> could petition the app store operator to
remove the counterfeit app.  Such a petition is harder to prove if a
generic URI scheme was used.</t>
          <t>Clients MUST NOT expose URLs that forward the user's browser to
arbitrary URIs obtained from a query parameter ("open redirector"), as
described in <xref target="open-redirectors"/>. Open redirectors can enable
exfiltration of authorization codes and access tokens.</t>
          <t>The client MAY use the <tt>state</tt> request parameter to achieve per-request
customization if needed rather than varying the redirect URI per request.</t>
          <t>Without requiring registration of redirect URIs, attackers can
use the authorization endpoint as an open redirector as
described in <xref target="open-redirectors"/>.</t>
        </section>
        <section anchor="multiple-redirect-uris">
          <name>Multiple Redirect URIs</name>
          <t>If multiple redirect URIs have been registered to a client, the client MUST
include a redirect URI with the authorization request using the
<tt>redirect_uri</tt> request parameter (<xref target="authorization-request"/>).
If only a single redirect URI has been registered to a client,
the <tt>redirect_uri</tt> request parameter is optional.</t>
        </section>
        <section anchor="preventing-csrf-attacks">
          <name>Preventing CSRF Attacks</name>
          <t>Clients MUST prevent Cross-Site Request Forgery (CSRF) attacks. In this
context, CSRF refers to requests to the redirection endpoint that do
not originate at the authorization server, but a malicious third party
(see <xref section="4.4.1.8" sectionFormat="of" target="RFC6819"/> for details). Clients that have
ensured that the authorization server supports the <tt>code_challenge</tt> parameter MAY
rely on the CSRF protection provided by that mechanism. In OpenID Connect flows,
validating the <tt>nonce</tt> parameter provides CSRF protection. Otherwise, one-time
use CSRF tokens carried in the <tt>state</tt> parameter that are securely
bound to the user agent MUST be used for CSRF protection (see
<xref target="csrf_countermeasures"/>).</t>
        </section>
        <section anchor="preventing-mix-up-attacks">
          <name>Preventing Mix-Up Attacks</name>
          <t>When an OAuth client can only interact with one authorization server, a mix-up defense is not required. In scenarios where an OAuth client interacts with two or more authorization servers, however, clients MUST prevent mix-up attacks.
In order to prevent mix-up attacks, clients MUST only process redirect responses of the issuer they sent the respective request to and from the same user agent this authorization request was initiated with.</t>
          <t>See <xref target="mix-up"/> for a detailed description of two different defenses against mix-up attacks.</t>
        </section>
        <section anchor="invalid-endpoint">
          <name>Invalid Endpoint</name>
          <t>If an authorization request fails validation due to a missing,
invalid, or mismatching redirect URI, the authorization server
SHOULD inform the resource owner of the error and MUST NOT
automatically redirect the user agent to the invalid redirect URI.</t>
        </section>
        <section anchor="endpoint-content">
          <name>Endpoint Content</name>
          <t>The redirection request to the client's endpoint typically results in
an HTML document response, processed by the user agent.  If the HTML
response is served directly as the result of the redirection request,
any script included in the HTML document will execute with full
access to the redirect URI and the artifacts (e.g., authorization code)
it contains. Additionally, the request URL containing the authorization code
may be sent in the HTTP Referer header to any embedded images, stylesheets
and other elements loaded in the page.</t>
          <t>The client SHOULD NOT include any third-party scripts (e.g., third-
party analytics, social plug-ins, ad networks) in the redirect URI
endpoint response.  Instead, it SHOULD extract the artifacts from
the URI and redirect the user agent again to another endpoint without
exposing the artifacts (in the URI or elsewhere).  If third-party
scripts are included, the client MUST ensure that its own scripts
(used to extract and remove the credentials from the URI) will
execute first.</t>
        </section>
      </section>
      <section anchor="client-authentication">
        <name>Client Authentication</name>
        <t>The authorization server MUST only rely on client authentication if the
process of issuance/registration and distribution of the underlying
credentials ensures their confidentiality.</t>
        <t>For confidential clients, the authorization server MAY accept any
form of client authentication meeting its security requirements
(e.g., client secret, public/private key pair).</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705"/> or using signed JWTs
("Private Key JWT") in accordance with <xref target="RFC7521"/>, <xref target="RFC7523"/>,
and their update <xref target="I-D.ietf-oauth-rfc7523bis"/>
(defined in <xref target="OpenID.Connect"/> as the client authentication method <tt>private_key_jwt</tt>).
When such methods for client authentication are used, authorization
servers do not need to store sensitive symmetric keys, making these
methods more robust against a number of attacks, and enables clients
to manage their own keys and key rotation.</t>
        <t>When using JWT-based client authentication, clients and authorization servers
MUST follow the updated guidance around <tt>aud</tt> values in <xref target="I-D.ietf-oauth-rfc7523bis"/>.</t>
        <t>When client authentication is not possible, the authorization server
SHOULD employ other means to validate the client's identity -- for
example, by requiring the registration of the client redirect URI
or enlisting the resource owner to confirm identity.  A valid
redirect URI is not sufficient to verify the client's identity
when asking for resource owner authorization but can be used to
prevent delivering credentials to a counterfeit client after
obtaining resource owner authorization.</t>
        <t>The client MUST NOT use more than one authentication method in each
request to prevent a conflict of which authentication mechanism is
authoritative for the request.</t>
        <t>The authorization server MUST consider the security implications of
interacting with unauthenticated clients and take measures to limit
the potential exposure of tokens issued to such clients,
(e.g., limiting the lifetime of refresh tokens).</t>
        <t>The privileges an authorization server associates with a certain
client identity MUST depend on the assessment of the overall process
for client identification and client credential lifecycle management.
See <xref target="security-client-authentication"/> for additional details.</t>
        <section anchor="client-secret">
          <name>Client Secret</name>
          <t>To support confidential clients in possession of a client secret,
the authorization server MUST support the client including the
client credentials in the request body content using the following
parameters:</t>
          <dl>
            <dt>"client_id":</dt>
            <dd>
              <t>REQUIRED.  The client identifier issued to the client during
the registration process described by <xref target="client-identifier"/>.</t>
            </dd>
            <dt>"client_secret":</dt>
            <dd>
              <t>REQUIRED.  The client secret.</t>
            </dd>
          </dl>
          <t>The parameters can only be transmitted in the request content and MUST NOT
be included in the request URI.</t>
          <t>This is also known as <tt>client_secret_post</tt> as defined in <xref section="2" sectionFormat="of" target="RFC7591"/>.</t>
          <t>For example, a request to refresh an access token (<xref target="refreshing-an-access-token"/>) using
the content parameters (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
&client_id=s6BhdRkqt3&client_secret=7Fjfp0ZBr1KtDRbnfVdmIw
]]></artwork>
          <t>The authorization server MAY support the HTTP Basic
authentication scheme for authenticating clients that were issued a
client secret.</t>
          <t>When using the HTTP Basic authentication scheme as defined in <xref section="11" sectionFormat="of" target="RFC9110"/>
to authenticate with the authorization server, the client identifier is encoded using the
<tt>application/x-www-form-urlencoded</tt> encoding algorithm per
<xref target="application-x-www-form-urlencoded"/>, and the encoded value is used as the username; the client
secret is encoded using the same algorithm and used as the
password.</t>
          <t>This is also known as <tt>client_secret_basic</tt> as defined in <xref section="2" sectionFormat="of" target="RFC7591"/>.</t>
          <t>For example (with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
Authorization: Basic czZCaGRSa3F0Mzo3RmpmcDBaQnIxS3REUmJuZlZkbUl3
]]></artwork>
          <t>Note: This method of initially form-encoding the client identifier and secret,
and then using the encoded values as the HTTP Basic authentication username
and password, has led to many interoperability problems in the past. Some
implementations have missed the encoding step, or decided to only encode
certain characters, or ignored the encoding requirement when validating the
credentials, leading to clients having to special-case how they present the
credentials to individual authorization servers. Including the credentials
in the request body content avoids the encoding issues and leads to more
interoperable implementations.</t>
          <t>Since the client secret authentication method involves a password, the
authorization server MUST protect any endpoint utilizing it against
brute force attacks.</t>
        </section>
        <section anchor="other-authentication-methods">
          <name>Other Authentication Methods</name>
          <t>The authorization server MAY support any suitable authentication
scheme matching its security requirements.  When using other
authentication methods, the authorization server MUST define a
mapping between the client identifier (registration record) and
authentication scheme.</t>
          <t>Some additional authentication methods such as mTLS <xref target="RFC8705"/>
and Private Key JWT (<xref target="RFC7523"/>, <xref target="I-D.ietf-oauth-rfc7523bis"/>)
are defined in the
"<eref target="https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#token-endpoint-auth-method">OAuth Token Endpoint Authentication Methods</eref>" registry,
and may be useful as generic client authentication methods beyond
the specific use of protecting the token endpoint.</t>
        </section>
      </section>
      <section anchor="unregistered-clients">
        <name>Unregistered Clients</name>
        <t>This specification does not require that clients be registered with
the authorization server.
However, the use of unregistered clients is beyond the scope of this
specification and requires additional security analysis and review of
its interoperability impact.</t>
      </section>
    </section>
    <section anchor="protocol-endpoints">
      <name>Protocol Endpoints</name>
      <t>The authorization process utilizes two authorization server endpoints
(HTTP resources):</t>
      <ul spacing="normal">
        <li>
          <t>Authorization endpoint - used by the client to obtain
authorization from the resource owner via user agent redirection.</t>
        </li>
        <li>
          <t>Token endpoint - used by the client to exchange an authorization
grant for an access token, typically with client authentication.</t>
        </li>
      </ul>
      <t>As well as one client endpoint:</t>
      <ul spacing="normal">
        <li>
          <t>Redirection endpoint - used by the authorization server to return
responses containing authorization credentials to the client via
the resource owner user agent.</t>
        </li>
      </ul>
      <t>Not every authorization grant type utilizes both endpoints.
Extension grant types MAY define additional endpoints as needed.</t>
      <section anchor="authorization-endpoint">
        <name>Authorization Endpoint</name>
        <t>The authorization endpoint is used to interact with the resource
owner and obtain an authorization grant.  The authorization server
MUST first authenticate the resource owner.  The way in
which the authorization server authenticates the resource owner
(e.g., username and password login, passkey, federated login, or by using an established session)
is beyond the scope of this specification.</t>
        <t>The means through which the client obtains the URL of the
authorization endpoint are beyond the scope of this specification,
but the URL is typically provided in the service documentation,
or in the authorization server's metadata document <xref target="RFC8414"/>.</t>
        <t>The authorization endpoint URL MUST NOT include a fragment component,
and MAY include a query string component <xref target="query-string-serialization"/>,
which MUST be retained when adding additional query parameters.</t>
        <t>The authorization server MUST support the use of the HTTP <tt>GET</tt>
method <xref section="9.3.1" sectionFormat="of" target="RFC9110"/> for the authorization endpoint and MAY support
the <tt>POST</tt> method (<xref section="9.3.3" sectionFormat="of" target="RFC9110"/>) as well.</t>
        <t>The authorization server MUST ignore unrecognized request parameters sent to the authorization endpoint.</t>
        <t>Request and response parameters
defined by this specification MUST NOT be included more than once.
This requirement also applies to parameters defined by extensions
unless the extension explicitly defines otherwise for a specific
parameter.
Parameters sent without a value MUST be treated as if they were
omitted from the request.</t>
        <t>An authorization server that redirects a request potentially containing
user credentials MUST avoid forwarding these user credentials accidentally
(see <xref target="redirect_307"/> for details).</t>
        <t>Cross-Origin Resource Sharing <xref target="WHATWG.CORS"/> MUST NOT be
supported at the Authorization Endpoint as the client does not access this
endpoint directly, instead the client redirects the user agent to it.</t>
      </section>
      <section anchor="token-endpoint">
        <name>Token Endpoint</name>
        <t>The token endpoint is used by the client to obtain an access token using
a grant such as those described in <xref target="obtaining-authorization"/> and
<xref target="refreshing-an-access-token"/>.</t>
        <t>The means through which the client obtains the URL of the token
endpoint are beyond the scope of this specification, but the URL
is typically provided in the service documentation and configured during
development of the client, or provided in the authorization server's metadata
document <xref target="RFC8414"/> and fetched programmatically at runtime.</t>
        <t>The token endpoint URL MUST NOT include a fragment component,
and MAY include a query string component <xref target="query-string-serialization"/>.</t>
        <t>The client MUST use the HTTP <tt>POST</tt> method when making requests to the token endpoint.</t>
        <t>The authorization server MUST ignore unrecognized request parameters sent to the token endpoint.</t>
        <t>Parameters sent without a value MUST be treated as if they were
omitted from the request. Request and response parameters
defined by this specification MUST NOT be included more than once.
This requirement also applies to parameters defined by extensions
unless the extension explicitly defines otherwise for a specific
parameter.</t>
        <t>Authorization servers that wish to support browser-based applications
(for example, applications running exclusively in client-side JavaScript without
access to a supporting backend server) will need to ensure the token endpoint
supports the necessary CORS <xref target="WHATWG.CORS"/> headers to allow the responses
to be visible to the application.
If the authorization server provides additional endpoints to the application, such
as metadata URLs, dynamic client registration, revocation, introspection, discovery or
user info endpoints, these endpoints may also be accessed by the browser-based
application, and will also need to have the CORS headers defined to allow access.
See <xref target="I-D.ietf-oauth-browser-based-apps"/> for further details.</t>
        <section anchor="token-endpoint-client-authentication">
          <name>Client Authentication</name>
          <t>Confidential clients MUST
authenticate with the authorization server as described in
<xref target="client-authentication"/> when making requests to the token endpoint.</t>
          <t>Client authentication is used for:</t>
          <ul spacing="normal">
            <li>
              <t>Enforcing the binding of refresh tokens and authorization codes to
the client they were issued to.  Client authentication adds an
additional layer of security when an authorization code is transmitted
to the redirection endpoint over an insecure channel.</t>
            </li>
            <li>
              <t>Recovering from a compromised client by disabling the client or
changing its credentials, thus preventing an attacker from abusing
stolen refresh tokens.  Changing a single set of client
credentials is significantly faster than revoking an entire set of
refresh tokens.</t>
            </li>
            <li>
              <t>Implementing authentication management best practices, which
require periodic credential rotation.  Rotation of an entire set
of refresh tokens can be challenging, while rotation of a single
set of client credentials is significantly easier.</t>
            </li>
          </ul>
        </section>
        <section anchor="token-request">
          <name>Token Endpoint Request</name>
          <t>The client makes a request to the token endpoint by sending the
following parameters using the form-encoded serialization
format per <xref target="form-serialization"/> with a character encoding of UTF-8 in the HTTP
request content:</t>
          <dl>
            <dt>"grant_type":</dt>
            <dd>
              <t>REQUIRED.  Identifier of the grant type the client uses with the particular token request.
This specification defines the values <tt>authorization_code</tt>, <tt>refresh_token</tt>, and <tt>client_credentials</tt>.
The grant type determines the further parameters required or supported by the token request. The
details of those grant types are defined below.</t>
            </dd>
            <dt>"client_id":</dt>
            <dd>
              <t>OPTIONAL.  The client identifier is needed when a form of client authentication that
relies on the parameter is used, or the <tt>grant_type</tt> requires identification of public clients.</t>
            </dd>
          </dl>
          <t>Confidential clients MUST authenticate with the authorization
server as described in <xref target="token-endpoint-client-authentication"/>.</t>
          <t>For example, the client makes the following HTTPS request
(with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code
&code=SplxlOBeZQQYbYS6WxSbIA
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>The authorization server MUST:</t>
          <ul spacing="normal">
            <li>
              <t>require client authentication for confidential clients
(or clients with other authentication requirements),</t>
            </li>
            <li>
              <t>authenticate the client if client authentication is included</t>
            </li>
          </ul>
          <t>Further grant type specific processing rules apply and are specified with the respective
grant type.</t>
        </section>
        <section anchor="token-response">
          <name>Token Endpoint 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 client authentication failed or is invalid, the authorization server returns
an error response as described in <xref target="token-error-response"/>.</t>
          <t>The authorization server issues an access token and optional refresh
token by creating an HTTP response according to <xref target="json-serialization"/>,
using the <tt>application/json</tt> media type as defined by <xref target="RFC8259"/>,
with the following parameters and an HTTP 200 (OK) status code:</t>
          <dl>
            <dt>"access_token":</dt>
            <dd>
              <t>REQUIRED.  The access token issued by the authorization server.</t>
            </dd>
            <dt>"token_type":</dt>
            <dd>
              <t>REQUIRED.  The type of the access token issued as described in
<xref target="access-tokens"/>.  Value is case insensitive.</t>
            </dd>
            <dt>"expires_in":</dt>
            <dd>
              <t>RECOMMENDED.  A JSON number that represents the lifetime
in seconds of the access token.  For
example, the value <tt>3600</tt> denotes that the access token will
expire in one hour from the time the response was generated.
If omitted, the authorization server SHOULD provide the
lifetime via other means or document the default value. Note
that the authorization server may prematurely expire an access
token and clients MUST NOT expect an access token to be valid
for the provided lifetime.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>RECOMMENDED, if identical to the scope requested by the client;
otherwise, REQUIRED.  The scope of the access token as
described by <xref target="access-token-scope"/>.</t>
            </dd>
            <dt>"refresh_token":</dt>
            <dd>
              <t>OPTIONAL.  The refresh token, which can be used to obtain new
access tokens based on the grant passed in the corresponding
token request.</t>
            </dd>
          </dl>
          <t>Authorization servers SHOULD determine, based on a risk assessment
and their own policies, whether to issue refresh tokens to a certain client.  If the
authorization server decides not to issue refresh tokens, the client
MAY obtain new access tokens by starting the OAuth flow over, for example
initiating a new authorization code request.  In such a case, the authorization
server may utilize cookies and persistent grants to optimize the user
experience.</t>
          <t>If refresh tokens are issued, those refresh tokens MUST be bound to
the scope and resource servers as consented by the resource owner.
This is to prevent privilege escalation by the legitimate client and
reduce the impact of refresh token leakage.</t>
          <t>The parameters are serialized into a JavaScript Object Notation (JSON)
structure as described in <xref target="json-serialization"/>.</t>
          <t>The authorization server MUST include the HTTP <tt>Cache-Control</tt>
response header field (see <xref section="5.2" sectionFormat="of" target="RFC9111"/>) with a value of <tt>no-store</tt> in any
response containing tokens, credentials, or other sensitive
information.</t>
          <t>For example:</t>
          <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",
  "example_parameter": "example_value"
}
]]></artwork>
          <t>The client MUST ignore unrecognized value names in the response.  The
sizes of tokens and other values received from the authorization
server are left undefined.  The client should avoid making
assumptions about value sizes.  The authorization server SHOULD
document the size of any value it issues.</t>
        </section>
        <section anchor="token-error-response">
          <name>Token Endpoint Error Response</name>
          <t>The authorization server responds with an HTTP 400 (Bad Request)
status code (unless specified otherwise) and includes the following
parameters with the response:</t>
          <dl>
            <dt>"error":</dt>
            <dd>
              <t>REQUIRED.  A single ASCII <xref target="USASCII"/> error code from the following:
</t>
              <dl>
                <dt>"invalid_request":</dt>
                <dd>
                  <t>The request is missing a required parameter, includes an
unsupported parameter value (other than grant type),
repeats a parameter, includes multiple credentials,
utilizes more than one mechanism for authenticating the
client, contains a <tt>code_verifier</tt> although no
<tt>code_challenge</tt> was sent in the authorization request,
or is otherwise malformed.</t>
                </dd>
                <dt>"invalid_client":</dt>
                <dd>
                  <t>Client authentication failed (e.g., unknown client, no
client authentication included, or unsupported
authentication method).  The authorization server MAY
return an HTTP 401 (Unauthorized) status code to indicate
which HTTP authentication schemes are supported.  If the
client attempted to authenticate via the <tt>Authorization</tt>
request header field, the authorization server MUST
respond with an HTTP 401 (Unauthorized) status code and
include the <tt>WWW-Authenticate</tt> response header field
matching the authentication scheme used by the client.</t>
                </dd>
                <dt>"invalid_grant":</dt>
                <dd>
                  <t>The provided authorization grant (e.g., authorization
code, resource owner credentials) or refresh token is
invalid, expired, revoked, does not match the redirect
URI used in the authorization request, or was issued to
another client.</t>
                </dd>
                <dt>"unauthorized_client":</dt>
                <dd>
                  <t>The authenticated client is not authorized to use this
authorization grant type.</t>
                </dd>
                <dt>"unsupported_grant_type":</dt>
                <dd>
                  <t>The authorization grant type is not supported by the
authorization server.</t>
                </dd>
                <dt>"invalid_scope":</dt>
                <dd>
                  <t>The requested scope is invalid, unknown, malformed, or
exceeds the scope granted by the resource owner.</t>
                </dd>
              </dl>
              <t>Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
            </dd>
            <dt>"error_description":</dt>
            <dd>
              <t>OPTIONAL.  Human-readable ASCII <xref target="USASCII"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
            </dd>
            <dt>"error_uri":</dt>
            <dd>
              <t>OPTIONAL.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</t>
            </dd>
          </dl>
          <t>The parameters are included in the content of the HTTP response
using the <tt>application/json</tt> media type as defined in <xref target="json-serialization"/>.</t>
          <t>For example:</t>
          <artwork><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
 "error": "invalid_request"
}
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="obtaining-authorization">
      <name>Grant Types</name>
      <t>To request an access token, the client obtains authorization from the
resource owner. This specification defines the following authorization grant types:</t>
      <ul spacing="normal">
        <li>
          <t>authorization code</t>
        </li>
        <li>
          <t>client credentials, and</t>
        </li>
        <li>
          <t>refresh token</t>
        </li>
      </ul>
      <t>It also provides an extension mechanism for defining additional grant types.</t>
      <section anchor="authorization-code-grant">
        <name>Authorization Code Grant</name>
        <t>The authorization code grant type is used to obtain both access
tokens and refresh tokens.</t>
        <t>The grant type uses the additional authorization endpoint to let the authorization server
interact with the resource owner in order to get consent for resource access.</t>
        <t>Since this is a redirect-based flow, the client must be capable of
initiating the flow with the resource owner's user agent (typically a web
browser) and capable of being redirected back to from the authorization server.</t>
        <figure anchor="fig-authorization-code-flow">
          <name>Authorization Code Flow</name>
          <artwork><![CDATA[
 +----------+
 | Resource |
 |   Owner  |
 +----------+
       ^
       |
       |
 +-----|----+          Client Identifier      +---------------+
 | .---+---------(1)-- & Redirect URI ------->|               |
 | |   |    |                                 |               |
 | |   '---------(2)-- User authenticates --->|               |
 | | User-  |                                 | Authorization |
 | | Agent  |                                 |     Server    |
 | |        |                                 |               |
 | |    .--------(3)-- Authorization Code ---<|               |
 +-|----|---+                                 +---------------+
   |    |                                         ^      v
   |    |                                         |      |
   ^    v                                         |      |
 +---------+                                      |      |
 |         |>---(4)-- Authorization Code ---------'      |
 |  Client |          & Redirect URI                     |
 |         |                                             |
 |         |<---(5)----- Access Token -------------------'
 +---------+       (w/ Optional Refresh Token)
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-authorization-code-flow"/> includes the following steps:</t>
        <t>(1)  The client initiates the flow by directing the resource owner's
     user agent to the authorization endpoint.  The client includes
     its client identifier, code challenge (derived from a generated code verifier),
     optional requested scope, optional local state, and a
     redirect URI to which the authorization server will send the
     user agent back once access is granted (or denied).</t>
        <t>(2)  The authorization server authenticates the resource owner (via
     the user agent) and establishes whether the resource owner
     grants or denies the client's access request.</t>
        <t>(3)  Assuming the resource owner grants access, the authorization
     server redirects the user agent back to the client using the
     redirect URI provided earlier (in the request or during
     client registration).  The redirect URI includes an
     authorization code and any local state provided by the client
     earlier.</t>
        <t>(4)  The client requests an access token from the authorization
     server's token endpoint by including the authorization code
     received in the previous step, and including its code verifier.
     When making the request, the
     client authenticates with the authorization server if it can.  The client
     includes the redirect URI used to obtain the authorization
     code for verification.</t>
        <t>(5)  The authorization server authenticates the client when possible, validates the
     authorization code, validates the code verifier, and ensures that the redirect URI
     received matches the URI used to redirect the user agent to 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, called the "code verifier", per authorization request to protect against authorization code
injection and CSRF attacks. The client first generates the code verifier, then derives the "code challenge" to include in the authorization request. The client
uses the code verifier when exchanging the authorization code at the token endpoint to prove that the client using the
authorization code is the same client that requested it.</t>
          <t>The client constructs the request URI by adding the following
parameters to the query component of the authorization endpoint URI
as described by <xref target="query-string-serialization"/>:</t>
          <dl>
            <dt>"response_type":</dt>
            <dd>
              <t>REQUIRED.  The authorization endpoint supports different sets of request and response
parameters. The client determines the type of flow by using a certain <tt>response_type</tt>
value. This specification defines the value <tt>code</tt>, which must be used to signal that
the client wants to use the authorization code flow.</t>
            </dd>
          </dl>
          <t>Extension response types MAY contain a space-delimited (%x20) list of
values, where the order of values does not matter (e.g., response
type <tt>a b</tt> is the same as <tt>b a</tt>).  The meaning of such composite
response types is defined by their respective specifications.</t>
          <t>Some extension response types are defined by <xref target="OpenID.Connect"/>.</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 unless the specific requirements of <xref target="authorization_codes"/> are met.  Code challenge derived from the code verifier.</t>
            </dd>
            <dt>"code_challenge_method":</dt>
            <dd>
              <t>OPTIONAL, defaults to <tt>plain</tt> if not present in the request.  Code
verifier transformation method is <tt>S256</tt> or <tt>plain</tt>.</t>
            </dd>
            <dt>"redirect_uri":</dt>
            <dd>
              <t>OPTIONAL if only one redirect URI is registered for this client.
REQUIRED if multiple redirect URIs are registered for this client.
See <xref target="multiple-redirect-uris"/>.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>.</t>
            </dd>
            <dt>"state":</dt>
            <dd>
              <t>OPTIONAL.  An opaque value used by the client to maintain
state between the request and callback.  The authorization
server includes this value when redirecting the user agent back
to the client.</t>
            </dd>
          </dl>
          <t>The <tt>code_verifier</tt> is a unique high-entropy cryptographically random string generated
for each authorization request, using the unreserved characters <tt>[A-Z] / [a-z] / [0-9] / "-" / "." / "_" / "~"</tt>,
with a minimum length of 43 characters and a maximum length of 128 characters.</t>
          <t>The client stores the <tt>code_verifier</tt> temporarily, and calculates the
<tt>code_challenge</tt> which it uses in the authorization request.</t>
          <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
          <artwork><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          <t>Clients SHOULD use code challenge methods that
do not expose the <tt>code_verifier</tt> in the authorization request.
Otherwise, attackers that can read the authorization request (cf.
Attacker A4 in <xref target="RFC9700"/>) can break the security provided
by this mechanism. Currently, <tt>S256</tt> is the only such method.</t>
          <t>NOTE: The code verifier SHOULD have enough entropy to make it
impractical to guess the value.  It is RECOMMENDED that the output of
a suitable random number generator be used to create a 32-octet
sequence.  The octet sequence is then base64url-encoded to produce a
43-octet URL-safe string to use as the code verifier.</t>
          <t>The client then creates a <tt>code_challenge</tt> derived from the code
verifier by using one of the following transformations on the code
verifier:</t>
          <artwork><![CDATA[
S256
  code_challenge = BASE64URL-ENCODE(SHA256(ASCII(code_verifier)))

plain
  code_challenge = code_verifier
]]></artwork>
          <t>If the client is capable of using <tt>S256</tt>, it MUST use <tt>S256</tt>, as
<tt>S256</tt> is Mandatory To Implement (MTI) on the server.  Clients are
permitted to use <tt>plain</tt> only if they cannot support <tt>S256</tt> for some
technical reason, for example constrained environments that do not have
a hashing function available, and know via out-of-band configuration or via
Authorization Server Metadata <xref target="RFC8414"/> that the server supports <tt>plain</tt>.</t>
          <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
          <artwork><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          <t>The properties <tt>code_challenge</tt> and <tt>code_verifier</tt> are adopted from the OAuth 2.0 extension
known as "Proof-Key for Code Exchange", or PKCE <xref target="RFC7636"/> where this technique
was originally developed.</t>
          <t>Authorization servers MUST support the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters.</t>
          <t>Clients MUST use <tt>code_challenge</tt> and <tt>code_verifier</tt> and
authorization servers MUST enforce their use except under the conditions
described in <xref target="authorization_codes"/>. Even in this case, using and enforcing
<tt>code_challenge</tt> and <tt>code_verifier</tt> as described above is still
RECOMMENDED.</t>
          <t>The <tt>state</tt> and <tt>scope</tt> parameters SHOULD NOT include sensitive
client or resource owner information in plain text, as they can be
transmitted over insecure channels or stored insecurely.</t>
          <t>The client directs the resource owner to the constructed URI using an
HTTP redirection, or by other means available to it via the user agent.</t>
          <t>For example, the client directs the user agent to make the following
HTTPS request (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
GET /authorize?response_type=code&client_id=s6BhdRkqt3&state=xyz
    &redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
    &code_challenge=6fdkQaPm51l13DSukcAH3Mdx7_ntecHYd1vi3n0hMZY
    &code_challenge_method=S256 HTTP/1.1
Host: server.example.com
]]></artwork>
          <t>The authorization server validates the request to ensure that all
required parameters are present and valid.</t>
          <t>In particular, the authorization server MUST validate the <tt>redirect_uri</tt>
in the request if present, ensuring that it matches one of the registered
redirect URIs previously established during client registration (<xref target="client-registration"/>).
When comparing the two URIs the authorization server MUST ensure that the
two URIs are equal, see <xref section="6.2.1" sectionFormat="of" target="RFC3986"/>, Simple String Comparison, for details.
The only exception is native apps using a localhost URI: In this case, the authorization server
MUST allow variable port numbers as described in <xref section="7.3" sectionFormat="of" target="RFC8252"/>.</t>
          <t>If the request is valid,
the authorization server authenticates the resource owner and obtains
an authorization decision (by asking the resource owner or by
establishing approval via other means).</t>
          <t>When a decision is established, the authorization server directs the
user agent to the provided client redirect URI using an HTTP
redirection response, or by other means available to it via the
user agent.</t>
        </section>
        <section anchor="authorization-response">
          <name>Authorization Response</name>
          <t>If the resource owner grants the access request, the authorization
server issues an authorization code and delivers it to the client by
adding the following parameters to the query component of the
redirect URI using the query string serialization described by
<xref target="query-string-serialization"/>, unless specified otherwise by an extension:</t>
          <dl>
            <dt>"code":</dt>
            <dd>
              <t>REQUIRED.  The authorization code is generated by the
authorization server and opaque to the client.  The authorization code MUST expire
shortly after it is issued to mitigate the risk of leaks.  A
maximum authorization code lifetime of 10 minutes is
RECOMMENDED. The authorization code is bound to
the client identifier, code challenge and redirect URI.</t>
            </dd>
            <dt>"state":</dt>
            <dd>
              <t>REQUIRED if the <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</t>
            </dd>
            <dt>"iss":</dt>
            <dd>
              <t>OPTIONAL. The identifier of the authorization server which the
client can use to prevent mix-up attacks, if the client interacts
with more than one authorization server. See <xref target="mix-up"/> and <xref target="RFC9207"/> for
additional details on when this parameter is necessary, and how the
client can use it to prevent mix-up attacks.</t>
            </dd>
          </dl>
          <t>For example, the authorization server redirects the user agent by
sending the following HTTP response:</t>
          <artwork><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA
          &state=xyz&iss=https%3A%2F%2Fauthorization-server.example.com
]]></artwork>
          <t>The client MUST ignore unrecognized response parameters.  The
authorization code string size is left undefined by this
specification.  The client should avoid making assumptions about code
value sizes.  The authorization server SHOULD document the size of
any value it issues.</t>
          <t>The authorization server MUST associate the <tt>code_challenge</tt> and
<tt>code_challenge_method</tt> values with the issued authorization code
so the code challenge can be verified later.</t>
          <t>The exact method that the server uses to associate the <tt>code_challenge</tt>
with the issued code is out of scope for this specification. The
code challenge could be stored on the server and associated with the
code there. The <tt>code_challenge</tt> and <tt>code_challenge_method</tt> values may
be stored in encrypted form in the code itself, but the server
MUST NOT include the <tt>code_challenge</tt> value in a response parameter
in a form that entities other than the AS can extract.</t>
          <t>Clients MUST prevent injection (replay) of authorization codes into the
authorization response by attackers. Using <tt>code_challenge</tt> and <tt>code_verifier</tt> prevents injection of authorization codes since the authorization server will reject a token request with a mismatched <tt>code_verifier</tt>. See <xref target="authorization_codes"/> for more details.</t>
          <section anchor="authorization-code-error-response">
            <name>Authorization 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 MUST NOT redirect the user agent to the
invalid redirect URI and SHOULD inform the resource owner of the
error, for example by displaying a message to the user in their browser.</t>
            <t>An authorization server 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 redirecting the user agent
to the redirect URI and adding the following
parameters to the query component of the redirect URI as described
by <xref target="query-string-serialization"/>:</t>
            <dl>
              <dt>"error":</dt>
              <dd>
                <t>REQUIRED.  A single ASCII <xref target="USASCII"/> error code from the
following:
</t>
                <dl>
                  <dt>"invalid_request":</dt>
                  <dd>
                    <t>The request is missing a required parameter, includes an
invalid parameter value, includes a parameter more than
once, or is otherwise malformed.</t>
                  </dd>
                  <dt>"unauthorized_client":</dt>
                  <dd>
                    <t>The client is not authorized to request an authorization
code using this method.</t>
                  </dd>
                  <dt>"access_denied":</dt>
                  <dd>
                    <t>The resource owner or authorization server denied the
request.</t>
                  </dd>
                  <dt>"unsupported_response_type":</dt>
                  <dd>
                    <t>The authorization server does not support obtaining an
authorization code using this method.</t>
                  </dd>
                  <dt>"invalid_scope":</dt>
                  <dd>
                    <t>The requested scope is invalid, unknown, or malformed.</t>
                  </dd>
                  <dt>"server_error":</dt>
                  <dd>
                    <t>The authorization server encountered an unexpected
condition that prevented it from fulfilling the request.
(This error code is needed because a 500 Internal Server
Error HTTP status code cannot be returned to the client
via an HTTP redirect.)</t>
                  </dd>
                  <dt>"temporarily_unavailable":</dt>
                  <dd>
                    <t>The authorization server is currently unable to handle
the request due to a temporary overloading or maintenance
of the server.  (This error code is needed because a 503
Service Unavailable HTTP status code cannot be returned
to the client via an HTTP redirect.)</t>
                  </dd>
                </dl>
                <t>Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_description":</dt>
              <dd>
                <t>OPTIONAL.  Human-readable ASCII <xref target="USASCII"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_uri":</dt>
              <dd>
                <t>OPTIONAL.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"state":</dt>
              <dd>
                <t>REQUIRED if a <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</t>
              </dd>
              <dt>"iss":</dt>
              <dd>
                <t>OPTIONAL. The identifier of the authorization server. See
<xref target="authorization-response"/> above for details.</t>
              </dd>
            </dl>
            <t>For example, the authorization server indicates the request was denied
by redirecting the user agent with the following HTTP response:</t>
            <artwork><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?error=access_denied
          &state=xyz&iss=https%3A%2F%2Fauthorization-server.example.com
]]></artwork>
          </section>
        </section>
        <section anchor="code-token-extension">
          <name>Token Endpoint Extension</name>
          <t>The authorization grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>authorization_code</tt>.</t>
          <t>If this value is set, the following additional token request parameters beyond <xref target="token-request"/> are supported:</t>
          <dl>
            <dt>"code":</dt>
            <dd>
              <t>REQUIRED.  The authorization code received from the
authorization server.</t>
            </dd>
            <dt>"code_verifier":</dt>
            <dd>
              <t>REQUIRED, if the <tt>code_challenge</tt> parameter was included in the authorization
request. MUST NOT be used otherwise. The original code verifier string.</t>
            </dd>
            <dt>"client_id":</dt>
            <dd>
              <t>REQUIRED, if the client is not authenticating with the authorization server
as described in <xref target="token-endpoint-client-authentication"/>.</t>
            </dd>
          </dl>
          <t>The authorization server MUST return an access token only once for a given authorization code.</t>
          <t>If a second valid token request is made with the same
authorization code as a previously successful token request,
the authorization server MUST deny the request and SHOULD
revoke (when possible) all access tokens and refresh tokens
previously issued based on that authorization code.
See <xref target="authorization-code-reuse"/> for further details.</t>
          <t>For example, the client makes the following HTTPS request
(with extra line breaks for display purposes only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code
&code=SplxlOBeZQQYbYS6WxSbIA
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>In addition to the processing rules in <xref target="token-request"/>, the authorization server MUST:</t>
          <ul spacing="normal">
            <li>
              <t>ensure that the authorization code was issued to the authenticated
confidential client, or if the client is public, ensure that the
code was issued to <tt>client_id</tt> in the request,</t>
            </li>
            <li>
              <t>verify that the authorization code is valid,</t>
            </li>
            <li>
              <t>verify that the <tt>code_verifier</tt> parameter is present if and only if a
<tt>code_challenge</tt> parameter was present in the authorization request,</t>
            </li>
            <li>
              <t>if a <tt>code_verifier</tt> is present, verify the <tt>code_verifier</tt> by calculating
the code challenge from the received <tt>code_verifier</tt> and comparing it with
the previously associated <tt>code_challenge</tt>, after first transforming it
according to the <tt>code_challenge_method</tt> method specified by the client, and</t>
            </li>
            <li>
              <t>If there was no <tt>code_challenge</tt> in the authorization request associated
with the authorization code in the token request, the authorization server MUST
reject the token request.</t>
            </li>
          </ul>
          <t>See <xref target="redirect-uri-in-token-request"/> for details on backwards compatibility
with OAuth 2.0 clients regarding the <tt>redirect_uri</tt> parameter in the token request.</t>
        </section>
      </section>
      <section anchor="client-credentials-grant">
        <name>Client Credentials Grant</name>
        <t>The client can request an access token using only its client
credentials (or other supported means of authentication) when the
client is requesting access to the protected resources under its
control, or those of another resource owner that have been previously
arranged with the authorization server (the method of which is beyond
the scope of this specification).</t>
        <t>The client credentials grant type MUST only be used by confidential clients.</t>
        <figure anchor="fig-client-credentials-grant">
          <name>Client Credentials Grant</name>
          <artwork><![CDATA[
     +---------+                                  +---------------+
     |         |                                  |               |
     |         |>--(1)- Client Authentication --->| Authorization |
     | Client  |                                  |     Server    |
     |         |<--(2)---- Access Token ---------<|               |
     |         |                                  |               |
     +---------+                                  +---------------+
]]></artwork>
        </figure>
        <t>The use of the client credentials grant illustrated in <xref target="fig-client-credentials-grant"/> includes the following steps:</t>
        <t>(1)  The client authenticates with the authorization server and
     requests an access token from the token endpoint.</t>
        <t>(2)  The authorization server authenticates the client, and if valid,
     issues an access token.</t>
        <section anchor="client-credentials-access-token-request">
          <name>Token Endpoint Extension</name>
          <t>The client credentials grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>client_credentials</tt>.</t>
          <t>If this value is set, the following additional token request parameters beyond <xref target="token-request"/> are supported:</t>
          <dl>
            <dt>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>.</t>
            </dd>
          </dl>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
]]></artwork>
          <t>The authorization server MUST authenticate the client.</t>
        </section>
      </section>
      <section anchor="refreshing-an-access-token">
        <name>Refresh Token Grant</name>
        <t>The refresh token is a credential issued by the authorization server to a client, which can be used
to obtain new (fresh) access tokens based on an existing grant. The client uses this option either because the previous access
token has expired or the client previously obtained an access token with a scope more narrow than
approved by the respective grant and later requires an access token with a different scope
under the same grant.</t>
        <t>Refresh tokens MUST be kept confidential in transit and storage, and
shared only among the authorization server and the client to whom the
refresh tokens were issued.  The authorization server MUST maintain
the binding between a refresh token and the client to whom it was
issued.</t>
        <t>The authorization server MUST verify the binding between the refresh
token and client identity whenever the client identity can be
authenticated.  When client authentication is not possible, the
authorization server SHOULD issue sender-constrained refresh tokens
or use refresh token rotation as described in <xref target="refresh-token-endpoint-extension"/>.</t>
        <t>The authorization server MUST ensure that refresh tokens cannot be
generated, modified, or guessed to produce valid refresh tokens by
unauthorized parties.</t>
        <section anchor="refresh-token-endpoint-extension">
          <name>Token Endpoint Extension</name>
          <t>The refresh token grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>refresh_token</tt>.</t>
          <t>If this value is set, the following additional parameters beyond <xref target="token-request"/> are supported:</t>
          <dl>
            <dt>"refresh_token":</dt>
            <dd>
              <t>REQUIRED.  The refresh token issued to the client.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope"/>. The requested scope MUST NOT include any scope
not originally granted by the resource owner, and if omitted is
treated as equal to the scope originally granted by the
resource owner.</t>
            </dd>
          </dl>
          <t>Because refresh tokens are typically long-lasting credentials used to
request additional access tokens, the refresh token is bound to the
client to which it was issued. Confidential clients
MUST authenticate with the authorization server as described in
<xref target="token-endpoint-client-authentication"/>.</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
]]></artwork>
          <t>In addition to the processing rules in <xref target="token-request"/>, the authorization server MUST:</t>
          <ul spacing="normal">
            <li>
              <t>if client authentication is included in the request, ensure that the refresh token was issued to the authenticated client, OR if a client_id is included in the request, ensure the refresh token was issued to the matching client</t>
            </li>
            <li>
              <t>validate that the grant corresponding to this refresh token is still active</t>
            </li>
            <li>
              <t>validate the refresh token</t>
            </li>
          </ul>
          <t>Authorization servers MUST utilize one of these methods to detect
refresh token replay by malicious actors for public clients:</t>
          <ul spacing="normal">
            <li>
              <t><em>Sender-constrained refresh tokens:</em> the authorization server
cryptographically binds the refresh token to a certain client
instance, e.g., by utilizing DPoP <xref target="RFC9449"/> or mTLS <xref target="RFC8705"/>.</t>
            </li>
            <li>
              <t><em>Refresh token rotation:</em> the authorization server issues a new
refresh token with every access token refresh response.  The
previous refresh token is invalidated but information about the
relationship is retained by the authorization server.  If a
refresh token is compromised and subsequently used by both the
attacker and the legitimate client, one of them will present an
invalidated refresh token, which will inform the authorization
server of the breach.  The authorization server cannot determine
which party submitted the invalid refresh token, but it will
revoke the active refresh token as well as the access authorization
grant associated with it. This stops the attack at the
cost of forcing the legitimate client to obtain a fresh
authorization grant.</t>
            </li>
          </ul>
          <t>Implementation note: the grant to which a refresh token belongs
may be encoded into the refresh token itself.  This can enable an
authorization server to efficiently determine the grant to which a
refresh token belongs, and by extension, all refresh tokens that
need to be revoked.  Authorization servers MUST ensure the
integrity of the refresh token value in this case, for example,
using signatures.</t>
        </section>
        <section anchor="refresh-token-response">
          <name>Refresh Token Response</name>
          <t>If valid and authorized, the authorization server issues an access
token as described in <xref target="token-response"/>.</t>
          <t>The authorization server MAY issue a new refresh token, in which case
the client MUST discard the old refresh token and replace it with the
new refresh token.</t>
        </section>
        <section anchor="refresh-token-recommendations">
          <name>Refresh Token Recommendations</name>
          <t>The authorization server MAY revoke the old
refresh token after issuing a new refresh token to the client.  If a
new refresh token is issued, the refresh token scope MUST be
identical to that of the refresh token included by the client in the
request.</t>
          <t>Authorization servers MAY revoke refresh tokens automatically in case
of a security event, such as:</t>
          <ul spacing="normal">
            <li>
              <t>password change</t>
            </li>
            <li>
              <t>logout at the authorization server</t>
            </li>
          </ul>
          <t>Refresh tokens SHOULD expire if the client has been inactive for some
time, i.e., the refresh token has not been used to obtain new
access tokens for some time.  The expiration time is at the
discretion of the authorization server.  It might be a global value
or determined based on the client policy or the grant associated with
the refresh token (and its sensitivity).</t>
        </section>
      </section>
      <section anchor="extension-grants">
        <name>Extension Grants</name>
        <t>The client uses an extension grant type by specifying the grant type
using an absolute URI (defined by the authorization server) as the
value of the <tt>grant_type</tt> parameter of the token endpoint, and by
adding any additional parameters necessary.</t>
        <t>For example, to request an access token using the Device Authorization Grant
as defined by <xref target="RFC8628"/> after the user has authorized the client on a separate device,
the client makes the following HTTPS request
(with extra line breaks for display purposes only):</t>
        <artwork><![CDATA[
  POST /token HTTP/1.1
  Host: server.example.com
  Content-Type: application/x-www-form-urlencoded

  grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Adevice_code
  &device_code=GmRhmhcxhwEzkoEqiMEg_DnyEysNkuNhszIySk9eS
  &client_id=C409020731
]]></artwork>
        <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token as described in <xref target="token-response"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="token-error-response"/>.</t>
      </section>
    </section>
    <section anchor="accessing-protected-resources">
      <name>Resource Requests</name>
      <t>The client accesses protected resources by presenting an access
token to the resource server.  The resource server MUST validate the
access token and ensure that it has not expired and that its scope
covers the requested resource.  The methods used by the resource
server to validate the access token
are beyond the scope of this specification, but generally involve an
interaction or coordination between the resource server and the
authorization server. For example, when the resource server and
authorization server are colocated or are part of the same system,
they may share a database or other storage; when the two components
are operated independently, they may use Token Introspection <xref target="RFC7662"/>
or a structured access token format such as a JWT <xref target="RFC9068"/>.</t>
      <section anchor="bearer-token-requests">
        <name>Bearer Token Requests</name>
        <t>This section defines two methods of sending Bearer tokens in resource
requests to resource servers. Clients MUST use one of the two methods defined below,
and MUST NOT use more than one method to transmit the token in each request.</t>
        <t>In particular, clients MUST NOT send the access token in a URI query parameter,
and resource servers MUST ignore access tokens in a URI query parameter.</t>
        <section anchor="authorization-request-header-field">
          <name>Authorization Request Header Field</name>
          <t>When sending the access token in the <tt>Authorization</tt> request header
field defined by HTTP/1.1 <xref target="RFC7235"/>, the client uses the <tt>Bearer</tt>
scheme to transmit the access token.</t>
          <t>For example:</t>
          <artwork><![CDATA[
 GET /resource HTTP/1.1
 Host: server.example.com
 Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
          <t>The syntax of the <tt>Authorization</tt> header field for this scheme
follows the usage of the Basic scheme defined in <xref section="2" sectionFormat="of" target="RFC2617"/>.
Note that, as with Basic, it does not conform to the
generic syntax defined in <xref section="1.2" sectionFormat="of" target="RFC2617"/> but is compatible
with the general authentication framework in HTTP 1.1 Authentication
<xref target="RFC7235"/>, although it does not follow the preferred
practice outlined therein in order to reflect existing deployments.
The syntax for Bearer credentials is as follows:</t>
          <artwork><![CDATA[
token68    = 1*( ALPHA / DIGIT /
                 "-" / "." / "_" / "~" / "+" / "/" ) *"="
credentials = "bearer" 1*SP token68
]]></artwork>
          <t>Clients SHOULD make authenticated requests with a bearer token using
the <tt>Authorization</tt> request header field with the <tt>Bearer</tt> HTTP
authorization scheme.  Resource servers MUST support this method.</t>
          <t>As described in <xref section="11.1" sectionFormat="of" target="RFC9110"/>, the string <tt>bearer</tt>
is case-insensitive. This means all of the following are valid uses
of the <tt>Authorization</tt> header:</t>
          <ul spacing="normal">
            <li>
              <t><tt>Authorization: Bearer mF_9.B5f-4.1JqM</tt></t>
            </li>
            <li>
              <t><tt>Authorization: bearer mF_9.B5f-4.1JqM</tt></t>
            </li>
            <li>
              <t><tt>Authorization: BEARER mF_9.B5f-4.1JqM</tt></t>
            </li>
            <li>
              <t><tt>Authorization: bEaReR mF_9.B5f-4.1JqM</tt></t>
            </li>
          </ul>
        </section>
        <section anchor="form-encoded-content-parameter">
          <name>Form-Encoded Content Parameter</name>
          <t>When sending the access token in the HTTP request content, the
client adds the access token to the request content using the
<tt>access_token</tt> parameter.  The client MUST NOT use this method unless
all of the following conditions are met:</t>
          <ul spacing="normal">
            <li>
              <t>The HTTP request includes the <tt>Content-Type</tt> header
field set to <tt>application/x-www-form-urlencoded</tt>.</t>
            </li>
            <li>
              <t>The content follows the encoding requirements of the
<tt>application/x-www-form-urlencoded</tt> content-type as defined by
the URL Living Standard <xref target="WHATWG.URL"/>.</t>
            </li>
            <li>
              <t>The HTTP request content is single-part.</t>
            </li>
            <li>
              <t>The content to be encoded in the request MUST consist entirely
of ASCII <xref target="USASCII"/> characters.</t>
            </li>
            <li>
              <t>The HTTP request method is one for which the content has
defined semantics.  In particular, this means that the <tt>GET</tt>
method MUST NOT be used.</t>
            </li>
          </ul>
          <t>The content MAY include other request-specific parameters, in
which case the <tt>access_token</tt> parameter MUST be properly separated
from the request-specific parameters using <tt>&amp;</tt> character(s) (ASCII
code 38).</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security:</t>
          <artwork><![CDATA[
POST /resource HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

access_token=mF_9.B5f-4.1JqM
]]></artwork>
          <t>The <tt>application/x-www-form-urlencoded</tt> method SHOULD NOT be used
except in application contexts where participating clients do not
have access to the <tt>Authorization</tt> request header field.  Resource
servers MAY support this method.</t>
        </section>
      </section>
      <section anchor="access-token-validation">
        <name>Access Token Validation</name>
        <t>After receiving the access token, the resource server MUST check that
the access token is not yet expired, is authorized to access the requested
resource, was issued with the appropriate scope, and meets other policy
requirements of the resource server to access the protected resource.</t>
        <t>Access tokens generally fall into two categories: reference tokens or self-encoded tokens.
Reference tokens can be validated by querying the authorization server or
looking up the token in a token database, whereas self-encoded tokens
contain the authorization information in an encrypted and/or signed string
which can be extracted by the resource server.</t>
        <t>A standardized method to query the authorization server to check the validity
of an access token is defined in Token Introspection <xref target="RFC7662"/>.</t>
        <t>A standardized method of encoding information in a token string is
defined in JWT Profile for Access Tokens <xref target="RFC9068"/>.</t>
        <t>See <xref target="access-token-security-considerations"/> for additional considerations
around creating and validating access tokens.</t>
      </section>
      <section anchor="error-response">
        <name>Error Response</name>
        <t>If a resource access request fails, the resource server SHOULD inform
the client of the error. The details of the error response is determined by the particular token type, such as the
description of Bearer tokens in <xref target="bearer-token-error-codes"/>.</t>
        <section anchor="the-www-authenticate-response-header-field">
          <name>The WWW-Authenticate Response Header Field</name>
          <t>If the protected resource request does not include authentication
credentials or does not contain an access token that enables access
to the protected resource, the resource server MUST include the HTTP
<tt>WWW-Authenticate</tt> response header field; it MAY include it in
response to other conditions as well.  The <tt>WWW-Authenticate</tt> header
field uses the framework defined by HTTP/1.1 <xref target="RFC7235"/>.</t>
          <t>All challenges for this token type MUST use the auth-scheme
value <tt>Bearer</tt>.  This scheme MUST be followed by one or more
auth-param values.  The auth-param attributes used or defined by this
specification for this token type are as follows.  Other auth-param
attributes MAY be used as well.</t>
          <dl>
            <dt>"realm":</dt>
            <dd>
              <t>A <tt>realm</tt> attribute MAY be included to indicate the scope of
protection in the manner described in HTTP/1.1 <xref target="RFC7235"/>.  The
<tt>realm</tt> attribute MUST NOT appear more than once.</t>
            </dd>
            <dt>"scope":</dt>
            <dd>
              <t>The <tt>scope</tt> attribute is defined in <xref target="access-token-scope"/>.  The
<tt>scope</tt> attribute is a space-delimited list of case-sensitive scope
values indicating the required scope of the access token for
accessing the requested resource. <tt>scope</tt> values are implementation
defined; there is no centralized registry for them; allowed values
are defined by the authorization server.  The order of <tt>scope</tt> values
is not significant.  In some cases, the <tt>scope</tt> value will be used
when requesting a new access token with sufficient scope of access to
utilize the protected resource.  Use of the <tt>scope</tt> attribute is
OPTIONAL.  The <tt>scope</tt> attribute MUST NOT appear more than once.  The
<tt>scope</tt> value is intended for programmatic use and is not meant to be
displayed to end users.
</t>
              <t>Two example scope values follow; these are taken from the OpenID
Connect <xref target="OpenID.Messages"/> and the Open Authentication Technology
Committee (OATC) Online Multimedia Authorization Protocol <xref target="OMAP"/>
OAuth 2.0 use cases, respectively:</t>
              <artwork><![CDATA[
scope="openid profile email"
scope="urn:example:channel=HBO&urn:example:rating=G,PG-13"
]]></artwork>
            </dd>
            <dt>"error":</dt>
            <dd>
              <t>If the protected resource request included an access token and failed
authentication, the resource server SHOULD include the <tt>error</tt>
attribute to provide the client with the reason why the access
request was declined.  The parameter value is described in
<xref target="bearer-token-error-codes"/>.</t>
            </dd>
            <dt>"error_description":</dt>
            <dd>
              <t>The resource server MAY include the
<tt>error_description</tt> attribute to provide developers a human-readable
explanation that is not meant to be displayed to end users.</t>
            </dd>
            <dt>"error_uri":</dt>
            <dd>
              <t>The resource server MAY include the <tt>error_uri</tt> attribute with an absolute URI
identifying a human-readable web page explaining the error.</t>
            </dd>
          </dl>
          <t>The <tt>error</tt>, <tt>error_description</tt>, and <tt>error_uri</tt> attributes MUST NOT
appear more than once.</t>
          <t>Values for the <tt>scope</tt> attribute (specified in <xref target="scope-syntax"/>)
MUST NOT include characters outside the set %x21 / %x23-5B
/ %x5D-7E for representing scope values and %x20 for delimiters
between scope values.  Values for the <tt>error</tt> and <tt>error_description</tt>
attributes (specified in <xref target="error-syntax"/> and <xref target="error-description-syntax"/>) MUST
NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Values for the <tt>error_uri</tt> attribute (specified in <xref target="error-uri-syntax"/> of)
MUST conform to the URI-reference syntax and thus MUST NOT
include characters outside the set %x21 / %x23-5B / %x5D-7E.</t>
        </section>
        <section anchor="bearer-token-error-codes">
          <name>Error Codes</name>
          <t>When a request fails, the resource server responds using the
appropriate HTTP status code (typically, 400, 401, 403, or 405) and
includes one of the following error codes in the response:</t>
          <dl>
            <dt>"invalid_request":</dt>
            <dd>
              <t>The request is missing a required parameter, includes an
unsupported parameter or parameter value, repeats the same
parameter, uses more than one method for including an access
token, or is otherwise malformed.  The resource server SHOULD
respond with the HTTP 400 (Bad Request) status code.</t>
            </dd>
            <dt>"invalid_token":</dt>
            <dd>
              <t>The access token provided is expired, revoked, malformed, or
invalid for other reasons.  The resource server SHOULD respond with
the HTTP 401 (Unauthorized) status code.  The client MAY
request a new access token and retry the protected resource
request.</t>
            </dd>
            <dt>"insufficient_scope":</dt>
            <dd>
              <t>The request requires higher privileges (scopes) than provided by the
scopes granted to the client and represented by the access token.
The resource server SHOULD respond with the HTTP
403 (Forbidden) status code and MAY include the <tt>scope</tt>
attribute with the scope necessary to access the protected
resource.</t>
            </dd>
          </dl>
          <t>Extensions may define additional error codes or specify additional
circumstances in which the above error codes are returned.</t>
          <t>If the request lacks any authentication information (e.g., the client
was unaware that authentication is necessary or attempted using an
unsupported authentication method), the resource server SHOULD NOT
include an error code or other error information.</t>
          <t>For example:</t>
          <artwork><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
          <t>And in response to a protected resource request with an
authentication attempt using an expired access token:</t>
          <artwork><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example",
                  error="invalid_token",
                  error_description="The access token expired"
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="extensibility">
      <name>Extensibility</name>
      <section anchor="defining-access-token-types">
        <name>Defining Access Token Types</name>
        <t>Access token types can be defined in one of two ways: registered in
the Access Token Types registry (following the procedures in
<xref section="11.1" sectionFormat="of" target="RFC6749"/>), or by using a unique absolute URI as its name.</t>
        <section anchor="registered-access-token-types">
          <name>Registered Access Token Types</name>
          <t><xref target="RFC6750"/> establishes a common registry in <xref section="11.4" sectionFormat="of" target="RFC6749"/>
for error values to be shared among OAuth token authentication schemes.</t>
          <t>New authentication schemes designed primarily for OAuth token
authentication SHOULD define a mechanism for providing an error
status code to the client, in which the error values allowed are
registered in the error registry established by this specification.</t>
          <t>Such schemes MAY limit the set of valid error codes to a subset of
the registered values.  If the error code is returned using a named
parameter, the parameter name SHOULD be <tt>error</tt>.</t>
          <t>Other schemes capable of being used for OAuth token authentication,
but not primarily designed for that purpose, MAY bind their error
values to the registry in the same manner.</t>
          <t>New authentication schemes MAY choose to also specify the use of the
<tt>error_description</tt> and <tt>error_uri</tt> parameters to return error
information in a manner parallel to their usage in this
specification.</t>
          <t>Type names MUST conform to the
type-name ABNF.  If the type definition includes a new HTTP
authentication scheme, the type name SHOULD be identical to the HTTP
authentication scheme name (as defined by <xref target="RFC2617"/>).  The token type
<tt>example</tt> is reserved for use in examples.</t>
          <artwork><![CDATA[
type-name  = 1*name-char
name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
        </section>
        <section anchor="vendor-specific-access-token-types">
          <name>Vendor-Specific Access Token Types</name>
          <t>Types utilizing a URI name SHOULD be limited to vendor-specific
implementations that are not commonly applicable, and are specific to
the implementation details of the resource server where they are
used.</t>
          <t>All other types MUST be registered.</t>
        </section>
      </section>
      <section anchor="defining-new-endpoint-parameters">
        <name>Defining New Endpoint Parameters</name>
        <t>New request or response parameters for use with the authorization
endpoint or the token endpoint are defined and registered in the
OAuth Parameters registry following the procedure in <xref section="11.2" sectionFormat="of" target="RFC6749"/>.</t>
        <t>Parameter names MUST conform to the param-name ABNF, and parameter
values syntax MUST be well-defined (e.g., using ABNF, or a reference
to the syntax of an existing parameter).</t>
        <artwork><![CDATA[
param-name  = 1*name-char
name-char   = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
        <t>Unregistered vendor-specific parameter extensions that are not
commonly applicable and that are specific to the implementation
details of the authorization server where they are used SHOULD
utilize a vendor-specific prefix that is not likely to conflict with
other registered values (e.g., begin with 'companyname_').</t>
      </section>
      <section anchor="defining-new-authorization-grant-types">
        <name>Defining New Authorization Grant Types</name>
        <t>New authorization grant types can be defined by assigning them a
unique absolute URI for use with the <tt>grant_type</tt> parameter.  If the
extension grant type requires additional token endpoint parameters,
they MUST be registered in the OAuth Parameters registry as described
by <xref section="11.2" sectionFormat="of" target="RFC6749"/>.</t>
      </section>
      <section anchor="new-response-types">
        <name>Defining New Authorization Endpoint Response Types</name>
        <t>New response types for use with the authorization endpoint are
defined and registered in the Authorization Endpoint Response Types
registry following the procedure in <xref section="11.3" sectionFormat="of" target="RFC6749"/>.  Response type
names MUST conform to the response-type ABNF.</t>
        <artwork><![CDATA[
response-type  = response-name *( SP response-name )
response-name  = 1*response-char
response-char  = "_" / DIGIT / ALPHA
]]></artwork>
        <t>If a response type contains one or more space characters (%x20), it
is compared as a space-delimited list of values in which the order of
values does not matter.  Only one order of values can be registered,
which covers all other arrangements of the same set of values.</t>
        <t>For example, an extension can define and register the <tt>code other_token</tt>
response type.  Once registered, the same combination cannot be registered
as <tt>other_token code</tt>, but both values can be used to
denote the same response type.</t>
      </section>
      <section anchor="defining-additional-error-codes">
        <name>Defining Additional Error Codes</name>
        <t>In cases where protocol extensions (i.e., access token types,
extension parameters, or extension grant types) require additional
error codes to be used with the authorization code grant error
response (<xref target="authorization-code-error-response"/>), the token error response (<xref target="token-error-response"/>), or the
resource access error response (<xref target="error-response"/>), such error codes MAY be
defined.</t>
        <t>Extension error codes MUST be registered (following the procedures in
<xref section="11.4" sectionFormat="of" target="RFC6749"/>) if the extension they are used in conjunction with is a
registered access token type, a registered endpoint parameter, or an
extension grant type.  Error codes used with unregistered extensions
MAY be registered.</t>
        <t>Error codes MUST conform to the error ABNF and SHOULD be prefixed by
an identifying name when possible.  For example, an error identifying
an invalid value set to the extension parameter <tt>example</tt> SHOULD be
named <tt>example_invalid</tt>.</t>
        <artwork><![CDATA[
error      = 1*error-char
error-char = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>As a flexible and extensible framework, OAuth's security
considerations depend on many factors.  The following sections
provide implementers with security guidelines focused on the three
client profiles described in <xref target="client-types"/>: web application,
browser-based application, and native application.</t>
      <t>A comprehensive OAuth security model and analysis, as well as
background for the protocol design, is provided by
<xref target="RFC6819"/> and <xref target="RFC9700"/>.</t>
      <section anchor="access-token-security-considerations">
        <name>Access Token Security Considerations</name>
        <section anchor="security-threats">
          <name>Security Threats</name>
          <t>The following list presents several common threats against protocols
utilizing some form of tokens.  This list of threats is based on NIST
Special Publication 800-63 <xref target="NIST800-63"/>.</t>
          <section anchor="access-token-manufacturemodification">
            <name>Access token manufacture/modification</name>
            <t>An attacker may generate a bogus
access token or modify the token contents (such as the authentication or
attribute statements) of an existing token, causing the resource
server to grant inappropriate access to the client.  For example,
an attacker may modify the token to extend the validity period; a
malicious client may modify the assertion to gain access to
information that they should not be able to view.</t>
          </section>
          <section anchor="access-token-information-disclosure">
            <name>Access token information disclosure</name>
            <t>Access tokens may contain authentication and attribute
statements that include sensitive information.</t>
            <t>If the client should be prevented from observing the contents of the access token,
content encryption MUST be applied.</t>
            <t>Since cookies are by default transmitted in cleartext, any
information contained in them is at risk of disclosure:
Bearer tokens MUST NOT be stored in cookies that can be sent in the
clear.
See Section 7 and 8 of <xref target="RFC6265"/> for security
considerations about cookies.</t>
          </section>
          <section anchor="access-token-redirect">
            <name>Access token redirect</name>
            <t>An attacker uses an access token generated for consumption
by one resource server to gain access to a different resource
server that mistakenly believes the token to be for it.</t>
          </section>
          <section anchor="access-token-replay">
            <name>Access token replay</name>
            <t>An attacker attempts to use an access token that has already
been used with that resource server in the past.</t>
          </section>
        </section>
        <section anchor="threat-mitigation">
          <name>Threat Mitigation</name>
          <t>A large range of threats can be mitigated by protecting the contents
of the access token by using a digital signature, and by following
best practices for signing key management such as periodic key rotation.</t>
          <t>Alternatively, a bearer token can contain a reference to
authorization information, rather than encoding the information
directly.  Using a reference may require an extra interaction between a
resource server and authorization server to resolve the reference to the
authorization information.  The mechanics of such an interaction are
not defined by this specification, but one such mechanism is defined
in Token Introspection <xref target="RFC7662"/>.</t>
          <t>This document does not specify the encoding or the contents of the
access token; hence, detailed recommendations about the means of
guaranteeing access token integrity protection are outside the scope of this
specification. One example of an encoding and
signing mechanism for access tokens is described in
JSON Web Token Profile for Access Tokens <xref target="RFC9068"/>.</t>
          <t>To deal with access token redirects, it is important for the authorization
server to include the identity of the intended recipients (the
audience), typically a single resource server (or a list of resource
servers), in the token.  Restricting the use of the token to a
specific scope is also RECOMMENDED.</t>
          <t><xref target="communication-security"/> provides information to
protect against access token disclosure and providing
confidentiality and integrity for the communications
between client, resource server and authorization server.</t>
        </section>
        <section anchor="summary-of-recommendations">
          <name>Summary of Recommendations</name>
          <section anchor="safeguard-bearer-tokens">
            <name>Safeguard bearer tokens</name>
            <t>Client implementations MUST ensure that
bearer tokens are not leaked to unintended parties, as they will
be able to use them to gain access to protected resources.  This
is the primary security consideration when using bearer tokens and
underlies all the more specific recommendations that follow.</t>
          </section>
          <section anchor="validate-tls-certificate-chains">
            <name>Validate TLS certificate chains</name>
            <t>The client MUST validate the TLS
certificate chain when making requests to protected resources.
Failing to do so may enable DNS hijacking attacks to steal the
token and gain unintended access.</t>
          </section>
          <section anchor="always-use-tls-https">
            <name>Always use TLS (https)</name>
            <t>Clients MUST always use TLS
(https) or equivalent transport security when making requests with
bearer tokens.  Failing to do so exposes the token to numerous
attacks that could give attackers unintended access.</t>
          </section>
          <section anchor="dont-store-bearer-tokens-in-http-cookies">
            <name>Don't store bearer tokens in HTTP cookies</name>
            <t>Implementations MUST NOT store
bearer tokens within cookies that can be sent in the clear (which
is the default transmission mode for cookies).  Implementations
that do store bearer tokens in cookies MUST take precautions
against cross-site request forgery.</t>
          </section>
          <section anchor="issue-short-lived-bearer-tokens">
            <name>Issue short-lived bearer tokens</name>
            <t>Authorization servers SHOULD issue
short-lived bearer tokens, particularly when
issuing tokens to clients that run within a web browser or other
environments where information leakage may occur.  Using
short-lived bearer tokens can reduce the impact of them being
leaked.</t>
          </section>
          <section anchor="issue-scoped-bearer-tokens">
            <name>Issue scoped bearer tokens</name>
            <t>Authorization servers SHOULD issue bearer tokens
that contain an audience restriction, scoping their use to the
intended resource server or set of resource servers.</t>
          </section>
          <section anchor="dont-pass-bearer-tokens-in-page-urls">
            <name>Don't pass bearer tokens in page URLs</name>
            <t>Bearer tokens MUST NOT be
passed in page URLs (for example, as query string parameters).
Instead, bearer tokens SHOULD be passed in HTTP message headers or
message bodies for which confidentiality measures are taken.
Browsers, web servers, and other software may not adequately
secure URLs in the browser history, web server logs, and other
data structures.  If bearer tokens are passed in page URLs,
attackers might be able to steal them from the history data, logs,
or other unsecured locations.</t>
          </section>
        </section>
        <section anchor="access-token-privilege-restriction">
          <name>Access Token Privilege Restriction</name>
          <t>The privileges associated with an access token SHOULD be restricted
to the minimum required for the particular application or use case.
This prevents clients from exceeding the privileges authorized by the
resource owner.  It also prevents users from exceeding their
privileges authorized by the respective security policy.  Privilege
restrictions also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server.  To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server.  If not, the resource server MUST refuse to serve
the respective request.  Clients and authorization servers MAY
utilize the parameters <tt>scope</tt> or <tt>resource</tt> as specified in
this document and <xref target="RFC8707"/>, respectively, to
determine the resource server they want to access.</t>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources.  To put this into effect,
the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource.  If not, the resource server must refuse to
serve the respective request.  Clients and authorization servers MAY
utilize the parameter <tt>scope</tt> and
<tt>authorization_details</tt> as specified in <xref target="RFC9396"/> to
determine those resources and/or actions.</t>
        </section>
      </section>
      <section anchor="security-client-authentication">
        <name>Client Authentication</name>
        <t>Depending on the overall process of client registration and credential
lifecycle management, this may affect the confidence an authorization
server has in a particular client.</t>
        <t>For example, authentication of a dynamically registered client does not
prove the identity of the client, it only ensures that repeated requests
to the authorization server were made from the same client instance. Such
clients may be limited in terms of which scopes they are allowed to request,
or may have other limitations such as shorter token lifetimes.</t>
        <t>In contrast, if there is a registered application whose developer's identity
was verified, who signed a contract and is issued a client secret
that is only used in a secure backend service, the authorization
server might allow this client to request more sensitive scopes
or to be issued longer-lasting tokens.</t>
      </section>
      <section anchor="client-impersonation">
        <name>Client Impersonation</name>
        <t>If a confidential client has its credentials stolen,
a malicious client can impersonate the client and obtain access
to protected resources.</t>
        <t>The authorization server SHOULD enforce explicit resource owner
authentication and provide the resource owner with information about
the client and the requested authorization scope and lifetime.  It is
up to the resource owner to review the information in the context of
the current client and to authorize or deny the request.</t>
        <t>The authorization server SHOULD NOT process repeated authorization
requests automatically (without active resource owner interaction)
without authenticating the client or relying on other measures to
ensure that the repeated request comes from the original client and
not an impersonator.</t>
        <section anchor="native-app-client-impersonation">
          <name>Impersonation of Native Apps</name>
          <t>As stated above, the authorization
server SHOULD NOT process authorization requests automatically
without user consent or interaction, except when the identity of the
client can be assured.  This includes the case where the user has
previously approved an authorization request for a given client ID --
unless the identity of the client can be proven, the request SHOULD
be processed as if no previous request had been approved.</t>
          <t>Measures such as claimed <tt>https</tt> scheme redirects MAY be accepted by
authorization servers as identity proof.  Some operating systems may
offer alternative platform-specific identity features that MAY be
accepted, as appropriate.</t>
        </section>
        <section anchor="access-token-privilege-restriction-1">
          <name>Access Token Privilege Restriction</name>
          <t>The client SHOULD request access tokens with the minimal scope
necessary.  The authorization server SHOULD take the client identity
into account when choosing how to honor the requested scope and MAY
issue an access token with fewer scopes than requested.</t>
          <t>The privileges associated with an access token SHOULD be restricted to
the minimum required for the particular application or use case. This
prevents clients from exceeding the privileges authorized by the
resource owner. It also prevents users from exceeding their privileges
authorized by the respective security policy. Privilege restrictions
also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server. To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server. If not, the resource server MUST refuse to serve the
respective request. Clients and authorization servers MAY utilize the
parameters <tt>scope</tt> or <tt>resource</tt> as specified in
<xref target="RFC8707"/>, respectively, to determine the
resource server they want to access.</t>
        </section>
      </section>
      <section anchor="client-impersonating-resource-owner">
        <name>Client Impersonating Resource Owner</name>
        <t>Resource servers may make access control decisions based on the identity of a
resource owner for which an access token was issued, or based on the identity
of a client in the client credentials grant. If both options are possible,
depending on the details of the implementation, a client's identity may be
mistaken for the identity of a resource owner. For example, if a client is able
to choose its own <tt>client_id</tt> during registration with the authorization server,
a malicious client may set it to a value identifying an end user (e.g., a <tt>sub</tt>
value if OpenID Connect is used). If the resource server cannot properly
distinguish between access tokens issued to clients and access tokens issued to
end users, the client may then be able to access resource of the end user.</t>
        <t>If the authorization server has a common namespace for client IDs and user
identifiers, causing the resource server to be unable to distinguish an access
token authorized by a resource owner from an access token authorized by a client
itself, authorization servers SHOULD NOT allow clients to influence their <tt>client_id</tt> or
any other Claim if that can cause confusion with a genuine resource owner. Where
this cannot be avoided, authorization servers MUST provide other means for the
resource server to distinguish between the two types of access tokens.</t>
      </section>
      <section anchor="authorization-code-security-considerations">
        <name>Authorization Code Security Considerations</name>
        <section anchor="authorization_codes">
          <name>Authorization Code Injection</name>
          <t>Authorization code injection is an attack where the client receives an authorization code from the attacker in its redirect URI instead of the authorization code from the legitimate authorization server. Without protections in place, there is no mechanism by which the client can know that the attack has taken place. Authorization code injection can lead to both the attacker obtaining access to a victim's account, as well as a victim accidentally gaining access to the attacker's account.</t>
          <section anchor="countermeasures">
            <name>Countermeasures</name>
            <t>To prevent injection of authorization codes into the client, using <tt>code_challenge</tt> and
<tt>code_verifier</tt> is REQUIRED for clients, and authorization servers MUST enforce
their use, unless both of the following criteria are met:</t>
            <ul spacing="normal">
              <li>
                <t>The client is a confidential client.</t>
              </li>
              <li>
                <t>In the specific deployment and the specific request, there is reasonable
assurance by the authorization server that the client implements the OpenID
Connect <tt>nonce</tt> mechanism properly.</t>
              </li>
            </ul>
            <t>In this case, using and enforcing <tt>code_challenge</tt> and <tt>code_verifier</tt> is still RECOMMENDED.</t>
            <t>The <tt>code_challenge</tt> or OpenID Connect <tt>nonce</tt> value MUST be
transaction-specific and securely bound to the client and the user agent in
which the transaction was started. If a transaction leads to an error, fresh
values for <tt>code_challenge</tt> or <tt>nonce</tt> MUST be chosen.</t>
            <t>Relying on the client to validate the OpenID Connect <tt>nonce</tt> parameter
means the authorization server has no way to confirm that the client
has actually protected itself against authorization code injection attacks.
If an attacker is able to inject an authorization code into a client, the
client would still exchange the injected authorization code and obtain tokens, and
would only later reject the ID token after validating the <tt>nonce</tt> and seeing
that it doesn't match. In contrast, the authorization server enforcing the
<tt>code_challenge</tt> and <tt>code_verifier</tt> parameters provides a higher security outcome,
since the authorization server is able to recognize the authorization code
injection attack pre-emptively and avoid issuing any tokens in the first place.</t>
            <t>Historic note: Although PKCE <xref target="RFC7636"/>
(where the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters were created)
was originally designed as a mechanism
to protect native apps from authorization code exfiltration attacks,
all kinds of OAuth clients, including web applications and other confidential clients,
are susceptible to authorization code injection attacks, which are solved by
the <tt>code_challenge</tt> and <tt>code_verifier</tt> mechanism.</t>
          </section>
        </section>
        <section anchor="authorization-code-reuse">
          <name>Reuse of Authorization Codes</name>
          <t>Several types of attacks are possible if authorization codes are able to be
used more than once.</t>
          <t>As described in <xref target="code-token-extension"/>, the authorization server must reject
a token request and revoke any issued tokens when receiving a second valid
request with an authorization code that has already been used to
issue an access token. If an attacker is able to exfiltrate an authorization code
and use it before the legitimate client, the attacker will obtain the access token
and the legitimate client will not. Revoking any issued tokens means the attacker's
tokens will then be revoked, stopping the attack from proceeding any further.</t>
          <t>However, the authorization server should only revoke issued tokens if the
request containing the authorization code is also valid, including any other parameters
such as the <tt>code_verifier</tt> and client authentication. The authorization server
SHOULD NOT revoke any issued tokens when receiving a replayed authorization code
that contains invalid parameters. If it were to do so, this would create a denial of service
opportunity for an attacker who is able to obtain an authorization code but
unable to obtain the client authentication or <tt>code_verifier</tt> by sending an invalid
authorization code request before the legitimate client and thereby revoking
the legitimate client's tokens once it makes the valid request.</t>
        </section>
        <section anchor="redirect_307">
          <name>HTTP 307 Redirect</name>
          <t>An authorization server which redirects a request that potentially contains user
credentials MUST NOT use the 307 status code (<xref section="15.4.8" sectionFormat="of" target="RFC9110"/>) for
redirection.
If an HTTP redirection (and not, for example,
JavaScript) is used for such a request, AS SHOULD use the status
code 303 ("See Other").</t>
          <t>At the authorization endpoint, a typical protocol flow is that the AS
prompts the user to enter their credentials in a form that is then
submitted (using the POST method) back to the authorization
server.  The AS checks the credentials and, if successful, redirects
the user agent to the client's redirect URI.</t>
          <t>If the status code 307 were used for redirection, the user agent
would send the user credentials via a POST request to the client.</t>
          <t>This discloses the sensitive credentials to the client.  If the
client is malicious, it can use the credentials to impersonate
the user at the AS.</t>
          <t>The behavior might be unexpected for developers, but is defined in
<xref section="15.4.8" sectionFormat="of" target="RFC9110"/>.  This status code does not require the user
agent to rewrite the POST request to a GET request and thereby drop
the form data in the POST request content.</t>
          <t>In HTTP <xref target="RFC9110"/>, only the status code 303
unambiguously enforces rewriting the HTTP POST request to an HTTP GET
request.  For all other status codes, including the popular 302, user
agents can opt not to rewrite POST to GET requests and therefore
reveal the user credentials to the client.  (In practice, however,
most user agents will only show this behaviour for 307 redirects.)</t>
        </section>
      </section>
      <section anchor="ensuring-endpoint-authenticity">
        <name>Ensuring Endpoint Authenticity</name>
        <t>The risk related to man-in-the-middle attacks is mitigated by the
mandatory use of channel security mechanisms such as <xref target="RFC8446"/>
for communicating with the Authorization and Token Endpoints.
See <xref target="communication-security"/> for further details.</t>
      </section>
      <section anchor="credentials-guessing-attacks">
        <name>Credentials-Guessing Attacks</name>
        <t>The authorization server MUST prevent attackers from guessing access
tokens, authorization codes, refresh tokens, resource owner
passwords, and client credentials.</t>
        <t>The probability of an attacker guessing generated tokens (and other
credentials not intended for handling by end users) MUST be less than
or equal to 2^(-128) and SHOULD be less than or equal to 2^(-160).</t>
        <t>The authorization server MUST utilize other means to protect
credentials intended for end-user usage.</t>
      </section>
      <section anchor="phishing-attacks">
        <name>Phishing Attacks</name>
        <t>Wide deployment of this and similar protocols may cause end users to
become inured to the practice of being redirected to websites where
they are asked to enter their passwords.  If end users are not
careful to verify the authenticity of these websites before entering
their credentials, it will be possible for attackers to exploit this
practice to steal resource owners' passwords, and other phishable
credentials such as OTPs.</t>
        <t>Service providers should attempt to educate end users about the risks
phishing attacks pose and should provide mechanisms that make it easy
for end users to confirm the authenticity of their sites, such as using
phishing-resistant authenticators, as phishing resistant authenticators
will offer a credential to log in to a certain site to the user only if
the platform has successfully verified the site's origin. Client
developers should consider the security implications of how they
interact with the user agent (e.g., external, embedded), and the
ability of the end user to verify the authenticity of the
authorization server.</t>
        <t>See <xref target="communication-security"/> for further details
on mitigating the risk of phishing attacks.</t>
      </section>
      <section anchor="csrf_countermeasures">
        <name>Cross-Site Request Forgery</name>
        <t>An attacker might attempt to inject a request to the redirect URI of
the legitimate client on the victim's device, e.g., to cause the
client to access resources under the attacker's control. This is a
variant of an attack known as Cross-Site Request Forgery (CSRF).</t>
        <t>The traditional countermeasure is that clients pass a random value, also
known as a CSRF Token, in the <tt>state</tt> parameter that links the request to
the redirect URI to the user agent session as described. This
countermeasure is described in detail in <xref section="5.3.5" sectionFormat="of" target="RFC6819"/>. The
same protection is provided by the <tt>code_verifier</tt> parameter or the
OpenID Connect <tt>nonce</tt> value.</t>
        <t>When using <tt>code_verifier</tt> instead of <tt>state</tt> or <tt>nonce</tt> for CSRF protection, it is
important to note that:</t>
        <ul spacing="normal">
          <li>
            <t>Clients MUST ensure that the AS supports the <tt>code_challenge_method</tt>
intended to be used by the client. If an authorization server does not support the requested method,
<tt>state</tt> or <tt>nonce</tt> MUST be used for CSRF protection instead.</t>
          </li>
          <li>
            <t>If <tt>state</tt> is used for carrying application state, and integrity of
its contents is a concern, clients MUST protect <tt>state</tt> against
tampering and swapping. This can be achieved by binding the
contents of state to the browser session and/or signed/encrypted
state values <xref target="I-D.bradley-oauth-jwt-encoded-state"/>.</t>
          </li>
        </ul>
        <t>AS therefore MUST provide a way to detect their supported code challenge methods
either via AS metadata according to <xref target="RFC8414"/> or provide a
deployment-specific way to ensure or determine support.</t>
      </section>
      <section anchor="clickjacking">
        <name>Clickjacking</name>
        <t>As described in <xref section="4.4.1.9" sectionFormat="of" target="RFC6819"/>, the authorization
request is susceptible to clickjacking attacks, also called user
interface redressing. In such an attack, an attacker embeds the
authorization endpoint user interface in an innocuous context.
A user believing to interact with that context, for example,
clicking on buttons, inadvertently interacts with the authorization
endpoint user interface instead. The opposite can be achieved as
well: A user believing to interact with the authorization endpoint
might inadvertently type a password into an attacker-provided
input field overlaid over the original user interface. Clickjacking
attacks can be designed such that users can hardly notice the attack,
for example using almost invisible iframes overlaid on top of
other elements.</t>
        <t>An attacker can use this vector to obtain the user's authentication
credentials, change the scope of access granted to the client,
and potentially access the user's resources.</t>
        <t>Authorization servers MUST prevent clickjacking attacks. Multiple
countermeasures are described in <xref target="RFC6819"/>, including the use of the
<tt>X-Frame-Options</tt> HTTP response header field and frame-busting
JavaScript. In addition to those, authorization servers SHOULD also
use Content Security Policy (CSP) level 2 <xref target="CSP-2"/> or greater.</t>
        <t>To be effective, CSP must be used on the authorization endpoint and,
if applicable, other endpoints used to authenticate the user and
authorize the client (e.g., the device authorization endpoint, login
pages, error pages, etc.). This prevents framing by unauthorized
origins in user agents that support CSP. The client MAY permit being
framed by some other origin than the one used in its redirection
endpoint. For this reason, authorization servers SHOULD allow
administrators to configure allowed origins for particular clients
and/or for clients to register these dynamically.</t>
        <t>Using CSP allows authorization servers to specify multiple origins in
a single response header field and to constrain these using flexible
patterns (see <xref target="CSP-2"/> for details). Level 2 of this standard provides
a robust mechanism for protecting against clickjacking by using
policies that restrict the origin of frames (using <tt>frame-ancestors</tt>)
together with those that restrict the sources of scripts allowed to
execute on an HTML page (by using <tt>script-src</tt>). A non-normative
example of such a policy is shown in the following listing:</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Security-Policy: frame-ancestors https://ext.example.org:8000
Content-Security-Policy: script-src 'self'
X-Frame-Options: ALLOW-FROM https://ext.example.org:8000
...
]]></artwork>
        <t>Because some user agents do not support <xref target="CSP-2"/>, this technique
SHOULD be combined with others, including those described in
<xref target="RFC6819"/>, unless such legacy user agents are explicitly unsupported
by the authorization server. Even in such cases, additional
countermeasures SHOULD still be employed.</t>
      </section>
      <section anchor="injection-and-input-validation">
        <name>Injection and Input Validation</name>
        <t>An 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 treat parameters received
as potentially malicious external input and apply appropriate protections,
in particular, the values of the <tt>state</tt> and <tt>redirect_uri</tt> parameters.</t>
      </section>
      <section anchor="open-redirectors">
        <name>Open Redirection</name>
        <t>An open redirector is an endpoint that forwards a user's browser
to an arbitrary URI obtained from a query parameter.
Such endpoints are sometimes implemented, for example, to show a
message before a user is then redirected to an external website,
or to redirect users back to a URL they were intending to visit
before being interrupted, e.g., by a login prompt.</t>
        <t>The following attacks can occur when an AS or client has an open
redirector.</t>
        <section anchor="open_redirector_on_client">
          <name>Client as Open Redirector</name>
          <t>Clients MUST NOT expose open redirectors. Attackers may use open
redirectors to produce URLs pointing to the client and utilize them to
exfiltrate authorization codes, as described in
<xref section="4.1.1" sectionFormat="of" target="RFC9700"/>.
Another abuse case is to produce URLs that appear to point to the client.
This might trick users into trusting the URL and follow it in their browser.
This can be abused for phishing.</t>
          <t>In order to prevent open redirection, clients should only redirect if
the target URLs are whitelisted or if the origin and integrity of a
request can be authenticated. Countermeasures against open redirection
are described by OWASP <xref target="owasp_redir"/>.</t>
        </section>
        <section anchor="authorization-server-as-open-redirector">
          <name>Authorization Server as Open Redirector</name>
          <t>Just as with clients, attackers could try to utilize a user's trust in
the authorization server (and its URL in particular) for performing
phishing attacks. OAuth authorization servers regularly redirect users
to other web sites (the clients), but must do so safely.</t>
          <t><xref target="authorization-code-error-response"/> already prevents open redirects by
stating that the authorization server MUST NOT automatically redirect the user agent in case
of an invalid combination of <tt>client_id</tt> and <tt>redirect_uri</tt>.</t>
          <t>However, an attacker could also utilize a correctly registered
redirect URI to perform phishing attacks. The attacker could, for
example, register a client via dynamic client registration <xref target="RFC7591"/>
and execute one of the following attacks:</t>
          <ol spacing="normal" type="1"><li>
              <t>Intentionally send an erroneous authorization request, e.g., by
 using an invalid scope value, thus instructing the authorization server to redirect the
 user agent to its phishing site.</t>
            </li>
            <li>
              <t>Intentionally send a valid authorization request with <tt>client_id</tt>
 and <tt>redirect_uri</tt> controlled by the attacker. After the user authenticates,
 the authorization server prompts the user to provide consent to the request. If the user
 notices an issue with the request and declines the request, the authorization server still
 redirects the user agent to the phishing site. In this case, the user agent
 will be redirected to the phishing site regardless of the action taken by
 the user.</t>
            </li>
            <li>
              <t>Intentionally send a valid silent authentication request (<tt>prompt=none</tt>)
 with <tt>client_id</tt> and <tt>redirect_uri</tt> controlled by the attacker. In this case,
 the authorization server will automatically redirect the user agent to the phishing site.</t>
            </li>
          </ol>
          <t>The authorization server MUST take precautions to prevent these threats. The authorization server MUST always
authenticate the user first and, with the exception of the silent authentication
use case, prompt the user for credentials when needed, before redirecting the
user. Based on its risk assessment, the authorization server needs to decide whether it can trust
the redirect URI or not. It could take into account URI analytics done
internally or through some external service to evaluate the credibility and
trustworthiness content behind the URI, and the source of the redirect URI and
other client data.</t>
          <t>The authorization server SHOULD only automatically redirect the user agent if it trusts the
redirect URI.  If the URI is not trusted, the authorization server MAY inform the user and rely on
the user to make the correct decision.</t>
        </section>
      </section>
      <section anchor="transport-security">
        <name>Transport Security</name>
        <t>In some deployments, including those utilizing load balancers,
the TLS connection to the resource server terminates prior to the actual
server that provides the resource. This could leave the token
unprotected between the front-end server where the TLS connection
terminates and the back-end server that provides the resource. In
such deployments, sufficient measures MUST be employed to ensure
confidentiality of the access token between the front-end and back-
end servers; encryption of the token is one such possible measure.</t>
        <t>See <xref section="17.2" sectionFormat="of" target="RFC9110"/> for further information.</t>
      </section>
      <section anchor="mix-up">
        <name>Authorization Server Mix-Up Mitigation</name>
        <t>Mix-up is an attack on scenarios where an OAuth client interacts with
two or more authorization servers and at least one authorization
server is under the control of the attacker. This can be the case,
for example, if the attacker uses dynamic registration to register the
client at his own authorization server or if an authorization server
becomes compromised.</t>
        <t>When an OAuth client can only interact with one authorization server, a mix-up
defense is not required. In scenarios where an OAuth client interacts with two
or more authorization servers, however, clients MUST prevent mix-up attacks. Two
different methods are discussed in the following.</t>
        <t>For both defenses, clients MUST store, for each authorization request, the
issuer they sent the authorization request to, bind this information to the
user agent, and check that the authorization response was received from the
correct issuer. Clients MUST ensure that the subsequent access token request,
if applicable, is sent to the same issuer. The issuer serves, via the associated
metadata, as an abstract identifier for the combination of the authorization
endpoint and token endpoint that are to be used in the flow. If an issuer identifier
is not available, for example, if neither OAuth 2.0 Authorization Server Metadata <xref target="RFC8414"/>
nor OpenID Connect Discovery <xref target="OpenID.Discovery"/> are used, a different unique identifier
for this tuple or the tuple itself can be used instead. For brevity of presentation,
such a deployment-specific identifier will be subsumed under the issuer (or
issuer identifier) in the following.</t>
        <t>Note: Just storing the authorization server URL is not sufficient to identify
mix-up attacks. An attacker might declare an uncompromised AS's authorization endpoint URL as
"their" AS URL, but declare a token endpoint under their own control.</t>
        <t>See <xref section="4.4" sectionFormat="of" target="RFC9700"/> for a detailed description
of several types of mix-up attacks.</t>
        <section anchor="mix-up-defense-via-issuer-identification">
          <name>Mix-Up Defense via Issuer Identification</name>
          <t>This defense requires that the authorization server sends his issuer identifier
in the authorization response to the client. When receiving the authorization
response, the client MUST compare the received issuer identifier to the stored
issuer identifier. If there is a mismatch, the client MUST abort the
interaction.</t>
          <t>There are different ways this issuer identifier can be transported to the client:</t>
          <ul spacing="normal">
            <li>
              <t>The issuer information can be transported, for
example, via an optional response parameter <tt>iss</tt> (see <xref target="authorization-response"/>).</t>
            </li>
            <li>
              <t>When OpenID Connect is used and an ID Token is returned in the authorization
response, the client can evaluate the <tt>iss</tt> claim in the ID Token.</t>
            </li>
          </ul>
          <t>In both cases, the <tt>iss</tt> value MUST be evaluated according to <xref target="RFC9207"/>.</t>
          <t>While this defense may require using an additional parameter to transport the
issuer information, it is a robust and relatively simple defense against mix-up.</t>
        </section>
        <section anchor="mix-up-defense-via-distinct-redirect-uris">
          <name>Mix-Up Defense via Distinct Redirect URIs</name>
          <t>For this defense, clients MUST use a distinct redirect URI for each issuer
they interact with.</t>
          <t>Clients MUST check that the authorization response was received from the correct
issuer by comparing the distinct redirect URI for the issuer to the URI where
the authorization response was received on. If there is a mismatch, the client
MUST abort the flow.</t>
          <t>While this defense builds upon existing OAuth functionality, it cannot be used
in scenarios where clients only register once for the use of many different
issuers (as in some open banking schemes) and due to the tight integration with
the client registration, it is harder to deploy automatically.</t>
          <t>Furthermore, an attacker might be able to circumvent the protection offered by
this defense by registering a new client with the "honest" AS using the redirect
URI that the client assigned to the attacker's AS. The attacker could then run
the attack as described above, replacing the
client ID with the client ID of his newly created client.</t>
          <t>This defense SHOULD therefore only be used if other options are not available.</t>
        </section>
      </section>
    </section>
    <section anchor="native-applications">
      <name>Native Applications</name>
      <t>Native applications are clients installed and executed on the device
used by the resource owner (i.e., desktop applications or native mobile
applications).  Native applications require special consideration
related to security, platform capabilities, and overall end-user
experience.</t>
      <t>The guidance in this section is primarily in the context of native mobile apps
as opposed to desktop apps. The native mobile platforms have matured
more than the desktop platforms in terms of the capabilities provided
to app developers relevant to the OAuth flows described here. While
the guidance is primarily focused on mobile apps, much of it generally can
apply to desktop apps as well.</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 in several different ways with
differing security properties of each. For example, using a redirect URI
with an "app-claimed URL" or custom URL scheme
registered with the operating system to invoke the
client as the handler, manual copy-and-paste of the credentials,
running a local web server, installing a user agent extension, or
by providing a redirect URI identifying a server-hosted
resource under the client's control, which in turn makes the
response available to the native application.</t>
      <t>Previously, it was common for native apps to use embedded user agents
(commonly implemented with web-views) for OAuth authorization
requests.  That approach has many drawbacks, including the host app
being able to copy user credentials and cookies as well as the user
needing to authenticate from scratch in each app.  See <xref target="native-apps-embedded-user-agents"/>
for a deeper analysis of the drawbacks of using embedded user agents
for OAuth.</t>
      <t>Native app authorization requests that use the system browser are more
secure and can take advantage of the user's authentication state on the device.
Being able to use the existing authentication session in the browser
enables single sign-on, as users don't need to authenticate to the
authorization server each time they use a new app (unless required by
the authorization server policy).</t>
      <t>Supporting authorization flows between a native app and the browser
is possible without changing the OAuth protocol itself, as the OAuth
authorization request and response are already defined in terms of
URIs.  This encompasses URIs that can be used for inter-app
communication.  Some OAuth server implementations that assume all
clients are confidential web clients will need to add an
understanding of public native app clients and the types of redirect
URIs they use to support this best practice.</t>
      <section anchor="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 are not confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, authorization servers MUST NOT require client
authentication of native app clients using a shared secret,
as this serves no 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 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 credentials, native apps are
classified as public clients, as defined in <xref target="client-types"/>,
and 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>
        <section anchor="native-app-attestation">
          <name>Native App Attestation</name>
          <t>The draft specification <xref target="I-D.ietf-oauth-attestation-based-client-auth"/>
defines a mechanism that can be used by a native app to obtain
a key-bound attestation to authenticate to an authorization server or
resource server. This can provide a higher level of assurance of
a mobile app's identity.</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, in particular mobile operating systems, allow apps to claim <tt>https</tt> URIs
(see <xref section="4.2.2" sectionFormat="of" target="RFC9110"/>)
in the domains they control.  When the browser encounters a
claimed URI, instead of the page being loaded in the browser, the
native app is launched with the URI supplied as a launch parameter.</t>
          <t>Such URIs can be used as redirect URIs by native apps.  They are
indistinguishable to the authorization server from a regular web-
based client redirect URI.  An example is:</t>
          <artwork><![CDATA[
https://app.example.com/oauth2redirect/example-provider
]]></artwork>
          <t>As the redirect URI alone is not enough to distinguish public native
app clients from confidential web clients, it is REQUIRED in
<xref target="native-app-registration"/> that the client type be recorded during client
registration to enable the server to determine the client type and
act accordingly.</t>
          <t>App-claimed <tt>https</tt> scheme redirect URIs have some advantages
compared to other native app redirect options in that the identity of
the destination app is guaranteed to the authorization server by the
operating system.  For this reason, native apps SHOULD use them over
the other options where possible.</t>
        </section>
        <section anchor="loopback-interface-redirection">
          <name>Loopback Interface Redirection</name>
          <t>Native apps that are able to open a port on the loopback network
interface without needing special permissions (typically, those on
desktop operating systems) can use the loopback interface to receive
the OAuth redirect.</t>
          <t>Loopback redirect URIs use the <tt>http</tt> scheme and are constructed with
the loopback IP literal and whatever port the client is listening on.</t>
          <t>That is, <tt>http://127.0.0.1:{port}/{path}</tt> for IPv4, and
<tt>http://[::1]:{port}/{path}</tt> for IPv6.  An example redirect using the
IPv4 loopback interface with a randomly assigned port:</t>
          <artwork><![CDATA[
http://127.0.0.1:51004/oauth2redirect/example-provider
]]></artwork>
          <t>An example redirect using the IPv6 loopback interface with a randomly
assigned port:</t>
          <artwork><![CDATA[
http://[::1]:61023/oauth2redirect/example-provider
]]></artwork>
          <t>While redirect URIs using the name <tt>localhost</tt> (i.e.,
<tt>http://localhost:{port}/{path}</tt>) function similarly to loopback IP
redirects, the use of <tt>localhost</tt> is NOT RECOMMENDED.  Specifying a
redirect URI with the loopback IP literal
rather than <tt>localhost</tt> avoids inadvertently listening on network
interfaces other than the loopback interface.  It is also less
susceptible to client-side firewalls and misconfigured host name
resolution on the user's device.</t>
          <t>The authorization server MUST allow any port to be specified at the
time of the request for loopback IP redirect URIs, to accommodate
clients that obtain an available ephemeral port from the operating
system at the time of the request.</t>
          <t>Clients SHOULD NOT assume that the device supports a particular
version of the Internet Protocol.  It is RECOMMENDED that clients
attempt to bind to the loopback interface using both IPv4 and IPv6
and use whichever is available.</t>
        </section>
        <section anchor="private-use-uri-scheme">
          <name>Private-Use URI Scheme Redirection</name>
          <t>Many mobile and desktop computing platforms support inter-app
communication via URIs by allowing apps to register private-use URI
schemes (sometimes colloquially referred to as "custom URL schemes")
like <tt>com.example.app</tt>.  When the browser or another app attempts to
load a URI with a private-use URI scheme, the app that registered it
is launched to handle the request.</t>
          <t>Many environments that support private-use URI schemes do not provide
a mechanism to claim a scheme and prevent other parties from using
another application's scheme. As such, clients using private-use URI
schemes are vulnerable to potential attacks on their redirect URIs,
so this option should only be used if the previously mentioned more
secure options are not available.</t>
          <t>To perform an authorization request with a private-use URI
scheme redirect, the native app launches the browser with a standard
authorization request, but one where the redirect URI utilizes a
private-use URI scheme it registered with the operating system.</t>
          <t>When choosing a URI scheme to associate with the app, apps MUST use a
URI scheme based on a domain name under their control, expressed in
reverse order, as recommended by <xref section="3.8" sectionFormat="of" target="RFC7595"/> for
private-use URI schemes.</t>
          <t>For example, an app that controls the domain name <tt>app.example.com</tt>
can use <tt>com.example.app</tt> as their scheme.  Some authorization
servers assign client identifiers based on domain names, for example,
<tt>client1234.usercontent.example.net</tt>, which can also be used as the
domain name for the scheme when reversed in the same manner.  A
scheme such as <tt>myapp</tt>, however, would not meet this requirement, as
it is not based on a domain name.</t>
          <t>When there are multiple apps by the same publisher, care must be
taken so that each scheme is unique within that group.  On platforms
that use app identifiers based on reverse-order domain names, those
identifiers can be reused as the private-use URI scheme for the OAuth
redirect to help avoid this problem.</t>
          <t>Following the requirements of <xref section="3.2" sectionFormat="of" target="RFC3986"/>, as there is
no naming authority for private-use URI scheme redirects, only a
single slash (<tt>/</tt>) appears after the scheme component.  A complete
example of a redirect URI utilizing a private-use URI scheme is:</t>
          <artwork><![CDATA[
com.example.app:/oauth2redirect/example-provider
]]></artwork>
          <t>When the authorization server completes the request, it redirects to
the client's redirect URI as it would normally.  As the
redirect URI uses a private-use URI scheme, it results in the
operating system launching the native app, passing in the URI as a
launch parameter.  Then, the native app uses normal processing for
the authorization response.</t>
        </section>
      </section>
      <section anchor="security-considerations-in-native-apps">
        <name>Security Considerations in Native Apps</name>
        <section anchor="native-apps-embedded-user-agents">
          <name>Embedded User Agents in Native Apps</name>
          <t>Embedded user agents are a technically possible method for authorizing native
apps.  These embedded user agents are unsafe for use by third parties
to the authorization server by definition, as the app that hosts the
embedded user agent can access the user's full authentication
credentials, not just the OAuth authorization grant that was intended
for the app. They are also typically sandboxed by the operating system
and mechanisms such as WebAuthn that rely on the web origin are disabled.</t>
          <t>In typical web-view-based implementations of embedded user agents,
the host application can record every keystroke entered in the login
form to capture usernames and passwords, automatically submit forms
to bypass user consent, and copy session cookies and use them to
perform authenticated actions as the user.</t>
          <t>Even when used by trusted apps belonging to the same party as the
authorization server, embedded user agents violate the principle of
least privilege by having access to more powerful credentials than
they need, potentially increasing the attack surface.</t>
          <t>Encouraging users to enter credentials in an embedded user agent
without the usual address bar and visible certificate validation
features that browsers have makes it impossible for the user to know
if they are signing in to the legitimate site; even when they are, it
trains them that it's OK to enter credentials without validating the
site first.</t>
          <t>Aside from the security concerns, embedded user agents do not share
the authentication state with other apps or the browser, requiring
the user to log in for every authorization request, which is often
considered an inferior user experience.</t>
        </section>
        <section anchor="fake-external-user-agents-in-native-apps">
          <name>Fake External User-Agents in Native Apps</name>
          <t>The native app that is initiating the authorization request has a
large degree of control over the user interface and can potentially
present a fake external user agent, that is, an embedded user agent
made to appear as an external user agent.</t>
          <t>When all good actors are using external user agents, the advantage is
that it is possible for security experts to detect bad actors, as
anyone faking an external user agent is provably bad.  On the other
hand, if good and bad actors alike are using embedded user agents,
bad actors don't need to fake anything, making them harder to detect.
Once a malicious app is detected, it may be possible to use this
knowledge to blacklist the app's signature in malware scanning
software, take removal action (in the case of apps distributed by app
stores) and other steps to reduce the impact and spread of the
malicious app.</t>
          <t>Authorization servers can also directly protect against fake external
user agents by requiring an authentication factor only available to
true external user agents.</t>
          <t>Users who are particularly concerned about their security when using
in-app browser tabs may also take the additional step of opening the
request in the full browser from the in-app browser tab and complete
the authorization there, as most implementations of the in-app
browser tab pattern offer such functionality.</t>
        </section>
        <section anchor="malicious-external-user-agents-in-native-apps">
          <name>Malicious External User-Agents in Native Apps</name>
          <t>If a malicious app is able to configure itself as the default handler
for <tt>https</tt> scheme URIs in the operating system, it will be able to
intercept authorization requests that use the default browser and
abuse this position of trust for malicious ends such as phishing the
user.</t>
          <t>This attack is not confined to OAuth; a malicious app configured in
this way would present a general and ongoing risk to the user beyond
OAuth usage by native apps.  Many operating systems mitigate this
issue by requiring an explicit user action to change the default
handler for <tt>http</tt> and <tt>https</tt> scheme URIs.</t>
        </section>
        <section anchor="loopback-native-apps">
          <name>Loopback Redirect Considerations in Native Apps</name>
          <t>Loopback interface redirect URIs MAY use the <tt>http</tt> scheme (i.e., without
TLS).  This is acceptable for loopback
interface redirect URIs as the HTTP request never leaves the device.</t>
          <t>Clients SHOULD open the network port only when starting the
authorization request and close it once the response is returned.</t>
          <t>Clients SHOULD listen on the loopback network interface only, in
order to avoid interference by other network actors.</t>
          <t>Clients SHOULD use loopback IP literals rather than the string <tt>localhost</tt>
as described in <xref target="loopback-interface-redirection"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="browser-based-apps">
      <name>Browser-Based Apps</name>
      <t>Browser-based apps are clients that run in a web browser, typically
written in JavaScript, also known as "single-page apps". These types of apps
have particular security considerations similar to native apps.</t>
      <t>TODO: Bring in the normative text of the browser-based apps BCP when it is finalized.</t>
    </section>
    <section anchor="oauth-2-0-differences">
      <name>Differences from OAuth 2.0</name>
      <t>This draft consolidates the functionality in OAuth 2.0 <xref target="RFC6749"/>,
OAuth 2.0 for Native Apps <xref target="RFC8252"/>,
Proof Key for Code Exchange <xref target="RFC7636"/>,
OAuth 2.0 for Browser-Based Apps <xref target="I-D.ietf-oauth-browser-based-apps"/>,
OAuth Security Best Current Practice <xref target="RFC9700"/>,
and Bearer Token Usage <xref target="RFC6750"/>.</t>
      <t>Where a later draft updates or obsoletes functionality found in the original
<xref target="RFC6749"/>, that functionality in this draft is updated with the normative
changes described in a later draft, or removed entirely.</t>
      <t>A non-normative list of changes from OAuth 2.0 is listed below:</t>
      <ul spacing="normal">
        <li>
          <t>The authorization code grant is extended with the functionality from PKCE <xref target="RFC7636"/>
such that the default method of using the authorization code grant according
to this specification requires the addition of the PKCE parameters</t>
        </li>
        <li>
          <t>Redirect URIs must be compared using exact string matching
as per <xref section="4.1.3" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>The Implicit grant (<tt>response_type=token</tt>) is omitted from this specification
as per <xref section="2.1.2" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>The Resource Owner Password Credentials grant is omitted from this specification
as per <xref section="2.4" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>Bearer token usage omits the use of bearer tokens in the query string of URIs
as per <xref section="4.3.2" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>Refresh tokens for public clients must either be sender-constrained or one-time use
as per <xref section="4.14.2" sectionFormat="of" target="RFC9700"/></t>
        </li>
        <li>
          <t>The token endpoint request containing an authorization code no longer contains
the <tt>redirect_uri</tt> parameter</t>
        </li>
        <li>
          <t>Authorization servers must support client credentials in the request body</t>
        </li>
      </ul>
      <section anchor="removal-of-the-oauth-20-implicit-grant">
        <name>Removal of the OAuth 2.0 Implicit grant</name>
        <t>The OAuth 2.0 Implicit grant is omitted from OAuth 2.1 as it was deprecated in
<xref target="RFC9700"/>.</t>
        <t>The intent of removing the Implicit grant is to no longer issue access tokens
in the authorization response, as such tokens are vulnerable to leakage
and injection, and are unable to be sender-constrained to a client.
This behavior was indicated by clients using the <tt>response_type=token</tt> parameter.
This value for the <tt>response_type</tt> parameter is no longer defined in OAuth 2.1.</t>
        <t>Removal of <tt>response_type=token</tt> does not have an effect on other extension
response types returning other artifacts from the authorization endpoint,
for example, <tt>response_type=id_token</tt> defined by <xref target="OpenID.Connect"/>.</t>
      </section>
      <section anchor="redirect-uri-in-token-request">
        <name>Redirect URI Parameter in Token Request</name>
        <t>In OAuth 2.0, the request to the token endpoint in the authorization code flow (<xref section="4.1.3" sectionFormat="of" target="RFC6749"/>) contains an optional <tt>redirect_uri</tt> parameter. The parameter was intended to prevent an authorization code injection attack, and was required if the <tt>redirect_uri</tt> parameter was sent in the original authorization request. The authorization request only required the <tt>redirect_uri</tt> parameter if multiple redirect URIs were registered to the specific client. However, in practice, many authorization server implementations required the <tt>redirect_uri</tt> parameter in the authorization request even if only one was registered, leading the <tt>redirect_uri</tt> parameter to be required at the token endpoint as well.</t>
        <t>In OAuth 2.1, authorization code injection is prevented by the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters, making the inclusion of the <tt>redirect_uri</tt> parameter serve no purpose in the token request. As such, it has been removed.</t>
        <t>For backwards compatibility of an authorization server wishing to support both OAuth 2.0 and OAuth 2.1 clients, the authorization server MUST allow clients to send the <tt>redirect_uri</tt> parameter in the token request (<xref target="code-token-extension"/>), and MUST enforce the parameter as described in <xref target="RFC6749"/>. The authorization server can use the <tt>client_id</tt> in the request to determine whether to enforce this behavior for the specific client that it knows will be using the older OAuth 2.0 behavior.</t>
        <t>A client following only the OAuth 2.1 recommendations will not send the <tt>redirect_uri</tt> in the token request, and therefore will not be compatible with an authorization server that expects the parameter in the token request.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document does not require any IANA actions.</t>
      <t>All referenced registries are defined by <xref target="RFC6749"/> and related documents that this
work is based upon. No changes to those registries are required by this specification.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC3629" target="https://www.rfc-editor.org/info/rfc3629" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3629.xml">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau"/>
            <date month="November" year="2003"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC4949" target="https://www.rfc-editor.org/info/rfc4949" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4949.xml">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author fullname="R. Shirey" initials="R." surname="Shirey"/>
            <date month="August" year="2007"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="FYI" value="36"/>
          <seriesInfo name="RFC" value="4949"/>
          <seriesInfo name="DOI" value="10.17487/RFC4949"/>
        </reference>
        <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources. Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key). To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC7235" target="https://www.rfc-editor.org/info/rfc7235" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7235.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems. This document defines the HTTP Authentication framework.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7235"/>
          <seriesInfo name="DOI" value="10.17487/RFC7235"/>
        </reference>
        <reference anchor="RFC7521" target="https://www.rfc-editor.org/info/rfc7521" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7521.xml">
          <front>
            <title>Assertion Framework for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="Y. Goland" initials="Y." surname="Goland"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification provides a framework for the use of assertions with OAuth 2.0 in the form of a new client authentication mechanism and a new authorization grant type. Mechanisms are specified for transporting assertions during interactions with a token endpoint; general processing rules are also specified.</t>
              <t>The intent of this specification is to provide a common framework for OAuth 2.0 to interwork with other identity systems using assertions and to provide alternative client authentication mechanisms.</t>
              <t>Note that this specification only defines abstract message flows and processing rules. In order to be implementable, companion specifications are necessary to provide the corresponding concrete instantiations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7521"/>
          <seriesInfo name="DOI" value="10.17487/RFC7521"/>
        </reference>
        <reference anchor="RFC7523" target="https://www.rfc-editor.org/info/rfc7523" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7523.xml">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification defines the use of a JSON Web Token (JWT) Bearer Token as a means for requesting an OAuth 2.0 access token as well as for client authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7523"/>
          <seriesInfo name="DOI" value="10.17487/RFC7523"/>
        </reference>
        <reference anchor="RFC7595" target="https://www.rfc-editor.org/info/rfc7595" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7595.xml">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes. It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser. This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="212"/>
          <seriesInfo name="RFC" value="8252"/>
          <seriesInfo name="DOI" value="10.17487/RFC8252"/>
        </reference>
        <reference anchor="RFC8259" target="https://www.rfc-editor.org/info/rfc8259" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8259.xml">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8446.xml">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9110" target="https://www.rfc-editor.org/info/rfc9110" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9110.xml">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9111" target="https://www.rfc-editor.org/info/rfc9111" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9111.xml">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="RFC9207" target="https://www.rfc-editor.org/info/rfc9207" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9207.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Issuer Identification</title>
            <author fullname="K. Meyer zu Selhausen" initials="K." surname="Meyer zu Selhausen"/>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document specifies a new parameter called iss. This parameter is used to explicitly include the issuer identifier of the authorization server in the authorization response of an OAuth authorization flow. The iss parameter serves as an effective countermeasure to "mix-up attacks".</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9207"/>
          <seriesInfo name="DOI" value="10.17487/RFC9207"/>
        </reference>
        <reference anchor="RFC9700" target="https://www.rfc-editor.org/info/rfc9700" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9700.xml">
          <front>
            <title>Best Current Practice for OAuth 2.0 Security</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="A. Labunets" initials="A." surname="Labunets"/>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <date month="January" year="2025"/>
            <abstract>
              <t>This document describes best current security practice for OAuth 2.0. It updates and extends the threat model and security advice given in RFCs 6749, 6750, and 6819 to incorporate practical experiences gathered since OAuth 2.0 was published and covers new threats relevant due to the broader application of OAuth 2.0. Further, it deprecates some modes of operation that are deemed less secure or even insecure.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="240"/>
          <seriesInfo name="RFC" value="9700"/>
          <seriesInfo name="DOI" value="10.17487/RFC9700"/>
        </reference>
        <reference anchor="BCP195">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS)</title>
            <author initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date year="2015"/>
          </front>
        </reference>
        <reference anchor="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange, ANSI X3.4</title>
            <author initials="A. N. S." surname="Institute" fullname="American National Standards Institute">
              <organization/>
            </author>
            <date year="1986"/>
          </front>
        </reference>
        <reference anchor="WHATWG.URL" target="https://url.spec.whatwg.org/">
          <front>
            <title>URL</title>
            <author initials="" surname="WHATWG">
              <organization/>
            </author>
            <date year="2022" month="May"/>
          </front>
        </reference>
        <reference anchor="WHATWG.CORS" target="https://fetch.spec.whatwg.org/#http-cors-protocol">
          <front>
            <title>Fetch Standard: CORS protocol</title>
            <author initials="" surname="WHATWG">
              <organization/>
            </author>
            <date year="2023" month="June"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-xml-20081126" target="https://www.w3.org/TR/REC-xml/REC-xml-20081126.xml">
          <front>
            <title>Extensible Markup Language</title>
            <author initials="T." surname="Bray">
              <organization/>
            </author>
            <author initials="J." surname="Paoli">
              <organization/>
            </author>
            <author initials="C. M." surname="Sperberg-McQueen">
              <organization/>
            </author>
            <author initials="E." surname="Maler">
              <organization/>
            </author>
            <author initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date year="2008" month="November"/>
          </front>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC2617" target="https://www.rfc-editor.org/info/rfc2617" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2617.xml">
          <front>
            <title>HTTP Authentication: Basic and Digest Access Authentication</title>
            <author fullname="J. Franks" initials="J." surname="Franks"/>
            <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker"/>
            <author fullname="J. Hostetler" initials="J." surname="Hostetler"/>
            <author fullname="S. Lawrence" initials="S." surname="Lawrence"/>
            <author fullname="P. Leach" initials="P." surname="Leach"/>
            <author fullname="A. Luotonen" initials="A." surname="Luotonen"/>
            <author fullname="L. Stewart" initials="L." surname="Stewart"/>
            <date month="June" year="1999"/>
            <abstract>
              <t>This document provides the specification for HTTP's authentication framework, the original Basic authentication scheme and a scheme based on cryptographic hashes, referred to as "Digest Access Authentication". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2617"/>
          <seriesInfo name="DOI" value="10.17487/RFC2617"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6265" target="https://www.rfc-editor.org/info/rfc6265" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6265.xml">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <author fullname="T. Lodderstedt" initials="T." role="editor" surname="Lodderstedt"/>
            <author fullname="M. McGloin" initials="M." surname="McGloin"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6819"/>
          <seriesInfo name="DOI" value="10.17487/RFC6819"/>
        </reference>
        <reference anchor="RFC7009" target="https://www.rfc-editor.org/info/rfc7009" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7009.xml">
          <front>
            <title>OAuth 2.0 Token Revocation</title>
            <author fullname="T. Lodderstedt" initials="T." role="editor" surname="Lodderstedt"/>
            <author fullname="S. Dronia" initials="S." surname="Dronia"/>
            <author fullname="M. Scurtescu" initials="M." surname="Scurtescu"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document proposes an additional endpoint for OAuth authorization servers, which allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed. This allows the authorization server to clean up security credentials. A revocation request will invalidate the actual token and, if applicable, other tokens based on the same authorization grant.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7009"/>
          <seriesInfo name="DOI" value="10.17487/RFC7009"/>
        </reference>
        <reference anchor="RFC7519" target="https://www.rfc-editor.org/info/rfc7519" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7519.xml">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC7591" target="https://www.rfc-editor.org/info/rfc7591" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7591.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Protocol</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Machulak" initials="M." surname="Machulak"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="July" year="2015"/>
            <abstract>
              <t>This specification defines mechanisms for dynamically registering OAuth 2.0 clients with authorization servers. Registration requests send a set of desired client metadata values to the authorization server. The resulting registration responses return a client identifier to use at the authorization server and the client metadata values registered for the client. The client can then use this registration information to communicate with the authorization server using the OAuth 2.0 protocol. This specification also defines a set of common client metadata fields and values for clients to use during registration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7591"/>
          <seriesInfo name="DOI" value="10.17487/RFC7591"/>
        </reference>
        <reference anchor="RFC7592" target="https://www.rfc-editor.org/info/rfc7592" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7592.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Management Protocol</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Machulak" initials="M." surname="Machulak"/>
            <date month="July" year="2015"/>
            <abstract>
              <t>This specification defines methods for management of OAuth 2.0 dynamic client registrations for use cases in which the properties of a registered client may need to be changed during the lifetime of the client. Not all authorization servers supporting dynamic client registration will support these management methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7592"/>
          <seriesInfo name="DOI" value="10.17487/RFC7592"/>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author fullname="N. Sakimura" initials="N." role="editor" surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Agarwal" initials="N." surname="Agarwal"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack. This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC7662" target="https://www.rfc-editor.org/info/rfc7662" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7662.xml">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="RFC8414" target="https://www.rfc-editor.org/info/rfc8414" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8414.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC8628" target="https://www.rfc-editor.org/info/rfc8628" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8628.xml">
          <front>
            <title>OAuth 2.0 Device Authorization Grant</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="August" year="2019"/>
            <abstract>
              <t>The OAuth 2.0 device authorization grant is designed for Internet- connected devices that either lack a browser to perform a user-agent- based authorization or are input constrained to the extent that requiring the user to input text in order to authenticate during the authorization flow is impractical. It enables OAuth clients on such devices (like smart TVs, media consoles, digital picture frames, and printers) to obtain user authorization to access protected resources by using a user agent on a separate device.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8628"/>
          <seriesInfo name="DOI" value="10.17487/RFC8628"/>
        </reference>
        <reference anchor="RFC8705" target="https://www.rfc-editor.org/info/rfc8705" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8705.xml">
          <front>
            <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates. OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8705"/>
          <seriesInfo name="DOI" value="10.17487/RFC8705"/>
        </reference>
        <reference anchor="RFC8707" target="https://www.rfc-editor.org/info/rfc8707" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8707.xml">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document specifies an extension to the OAuth 2.0 Authorization Framework defining request parameters that enable a client to explicitly signal to an authorization server about the identity of the protected resource(s) to which it is requesting access.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8707"/>
          <seriesInfo name="DOI" value="10.17487/RFC8707"/>
        </reference>
        <reference anchor="RFC9068" target="https://www.rfc-editor.org/info/rfc9068" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9068.xml">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens</title>
            <author fullname="V. Bertocci" initials="V." surname="Bertocci"/>
            <date month="October" year="2021"/>
            <abstract>
              <t>This specification defines a profile for issuing OAuth 2.0 access tokens in JSON Web Token (JWT) format. Authorization servers and resource servers from different vendors can leverage this profile to issue and consume access tokens in an interoperable manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9068"/>
          <seriesInfo name="DOI" value="10.17487/RFC9068"/>
        </reference>
        <reference anchor="RFC9126" target="https://www.rfc-editor.org/info/rfc9126" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9126.xml">
          <front>
            <title>OAuth 2.0 Pushed Authorization Requests</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="D. Tonge" initials="D." surname="Tonge"/>
            <author fullname="F. Skokan" initials="F." surname="Skokan"/>
            <date month="September" year="2021"/>
            <abstract>
              <t>This document defines the pushed authorization request (PAR) endpoint, which allows clients to push the payload of an OAuth 2.0 authorization request to the authorization server via a direct request and provides them with a request URI that is used as reference to the data in a subsequent call to the authorization endpoint.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9126"/>
          <seriesInfo name="DOI" value="10.17487/RFC9126"/>
        </reference>
        <reference anchor="RFC9396" target="https://www.rfc-editor.org/info/rfc9396" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9396.xml">
          <front>
            <title>OAuth 2.0 Rich Authorization Requests</title>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="J. Richer" initials="J." surname="Richer"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <date month="May" year="2023"/>
            <abstract>
              <t>This document specifies a new parameter authorization_details that is used to carry fine-grained authorization data in OAuth messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9396"/>
          <seriesInfo name="DOI" value="10.17487/RFC9396"/>
        </reference>
        <reference anchor="RFC9449" target="https://www.rfc-editor.org/info/rfc9449" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9449.xml">
          <front>
            <title>OAuth 2.0 Demonstrating Proof of Possession (DPoP)</title>
            <author fullname="D. Fett" initials="D." surname="Fett"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="D. Waite" initials="D." surname="Waite"/>
            <date month="September" year="2023"/>
            <abstract>
              <t>This document describes a mechanism for sender-constraining OAuth 2.0 tokens via a proof-of-possession mechanism on the application level. This mechanism allows for the detection of replay attacks with access and refresh tokens.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9449"/>
          <seriesInfo name="DOI" value="10.17487/RFC9449"/>
        </reference>
        <reference anchor="RFC9470" target="https://www.rfc-editor.org/info/rfc9470" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9470.xml">
          <front>
            <title>OAuth 2.0 Step Up Authentication Challenge Protocol</title>
            <author fullname="V. Bertocci" initials="V." surname="Bertocci"/>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <date month="September" year="2023"/>
            <abstract>
              <t>It is not uncommon for resource servers to require different authentication strengths or recentness according to the characteristics of a request. This document introduces a mechanism that resource servers can use to signal to a client that the authentication event associated with the access token of the current request does not meet its authentication requirements and, further, how to meet them. This document also codifies a mechanism for a client to request that an authorization server achieve a specific authentication strength or recentness when processing an authorization request.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9470"/>
          <seriesInfo name="DOI" value="10.17487/RFC9470"/>
        </reference>
        <reference anchor="I-D.bradley-oauth-jwt-encoded-state" target="https://datatracker.ietf.org/doc/html/draft-bradley-oauth-jwt-encoded-state-09" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.bradley-oauth-jwt-encoded-state.xml">
          <front>
            <title>Encoding claims in the OAuth 2 state parameter using a JWT</title>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Torsten Lodderstedt" initials="T." surname="Lodderstedt">
              <organization>YES.com AG</organization>
            </author>
            <author fullname="Hans Zandbelt" initials="H." surname="Zandbelt">
              <organization>ZmartZone IAM</organization>
            </author>
            <date day="4" month="November" year="2018"/>
            <abstract>
              <t>This draft provides a method for a client to encode one or more elements encoding information about the session into the OAuth 2 "state" parameter.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bradley-oauth-jwt-encoded-state-09"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-browser-based-apps-26" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-browser-based-apps.xml">
          <front>
            <title>OAuth 2.0 for Browser-Based Applications</title>
            <author fullname="Aaron Parecki" initials="A." surname="Parecki">
              <organization>Okta</organization>
            </author>
            <author fullname="Philippe De Ryck" initials="P." surname="De Ryck">
              <organization>Pragmatic Web Security</organization>
            </author>
            <author fullname="David Waite" initials="D." surname="Waite">
              <organization>Ping Identity</organization>
            </author>
            <date day="3" month="December" year="2025"/>
            <abstract>
              <t>This specification details the threats, attack consequences, security considerations and best practices that must be taken into account when developing browser-based applications that use OAuth 2.0. Discussion Venues This note is to be removed before publishing as an RFC. Discussion of this document takes place on the Web Authorization Protocol Working Group mailing list (oauth@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/oauth/. Source for this draft and an issue tracker can be found at https://github.com/oauth-wg/oauth-browser-based-apps.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-26"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-rfc7523bis" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-rfc7523bis-05" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-rfc7523bis.xml">
          <front>
            <title>Updates to OAuth 2.0 JSON Web Token (JWT) Client Authentication and Assertion-Based Authorization Grants</title>
            <author fullname="Michael B. Jones" initials="M. B." surname="Jones">
              <organization>Self-Issued Consulting</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Chuck Mortimore" initials="C." surname="Mortimore">
              <organization>Disney</organization>
            </author>
            <author fullname="Filip Skokan" initials="F." surname="Skokan">
              <organization>Okta</organization>
            </author>
            <date day="12" month="January" year="2026"/>
            <abstract>
              <t>This specification updates the requirements for audience values in OAuth 2.0 Client Assertion Authentication and Assertion-based Authorization Grants to address a security vulnerability identified in the previous requirements for those audience values in multiple OAuth 2.0 specifications.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rfc7523bis-05"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-attestation-based-client-auth" target="https://datatracker.ietf.org/doc/html/draft-ietf-oauth-attestation-based-client-auth-07" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-attestation-based-client-auth.xml">
          <front>
            <title>OAuth 2.0 Attestation-Based Client Authentication</title>
            <author fullname="Tobias Looker" initials="T." surname="Looker">
              <organization>MATTR</organization>
            </author>
            <author fullname="Paul Bastian" initials="P." surname="Bastian">
              <organization>Bundesdruckerei</organization>
            </author>
            <author fullname="Christian Bormann" initials="C." surname="Bormann">
              <organization>SPRIND</organization>
            </author>
            <date day="15" month="September" year="2025"/>
            <abstract>
              <t>This specification defines an extension to the OAuth 2 protocol as defined in [RFC6749] which enables a Client Instance to include a key-bound attestation in interactions with an Authorization Server or a Resource Server. This new method enables Client Instances involved in a client deployment that is traditionally viewed as a public client, to be able to utilize this key-bound attestation to authenticate.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-attestation-based-client-auth-07"/>
        </reference>
        <reference anchor="OpenID.Connect" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0 incorporating errata set 2</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="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Discovery" target="https://openid.net/specs/openid-connect-discovery-1_0.html">
          <front>
            <title>OpenID Connect Discovery 1.0 incorporating errata set 2</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="OMAP" target="https://www.svta.org/product/online-multimedia-authorization-protocol/">
          <front>
            <title>Online Multimedia Authorization Protocol: An Industry Standard for Authorized Access to Internet Multimedia Resources</title>
            <author initials="J." surname="Huff">
              <organization/>
            </author>
            <author initials="D." surname="Schlacht">
              <organization/>
            </author>
            <author initials="A." surname="Nadalin">
              <organization/>
            </author>
            <author initials="J." surname="Simmons">
              <organization/>
            </author>
            <author initials="P." surname="Rosenberg">
              <organization/>
            </author>
            <author initials="P." surname="Madsen">
              <organization/>
            </author>
            <author initials="T." surname="Ace">
              <organization/>
            </author>
            <author initials="C." surname="Rickelton-Abdi">
              <organization/>
            </author>
            <author initials="B." surname="Boyer">
              <organization/>
            </author>
            <date year="2012" month="August"/>
          </front>
        </reference>
        <reference anchor="NIST800-63" target="http://csrc.nist.gov/publications/">
          <front>
            <title>NIST Special Publication 800-63-1, INFORMATION SECURITY</title>
            <author initials="W." surname="Burr">
              <organization/>
            </author>
            <author initials="D." surname="Dodson">
              <organization/>
            </author>
            <author initials="E." surname="Newton">
              <organization/>
            </author>
            <author initials="R." surname="Perlner">
              <organization/>
            </author>
            <author initials="T." surname="Polk">
              <organization/>
            </author>
            <author initials="S." surname="Gupta">
              <organization/>
            </author>
            <author initials="E." surname="Nabbus">
              <organization/>
            </author>
            <date year="2011" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Messages" target="http://openid.net/specs/openid-connect-messages-1_0.html">
          <front>
            <title>OpenID Connect Messages 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2012" month="June"/>
          </front>
        </reference>
        <reference anchor="owasp_redir" target="https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html">
          <front>
            <title>OWASP Cheat Sheet Series - Unvalidated Redirects and Forwards</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="CSP-2" target="https://www.w3.org/TR/CSP2">
          <front>
            <title>Content Security Policy Level 2</title>
            <author>
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-html401-19991224" target="https://www.w3.org/TR/1999/REC-html401-19991224/" xml:base="https://bib.ietf.org/public/rfc/bibxml4/reference.W3C.REC-html401-19991224.xml">
          <front>
            <title>HTML 4.01 Specification</title>
            <author fullname="Arnaud Le Hors" role="editor"/>
            <author fullname="Dave Raggett" role="editor"/>
            <author fullname="Ian Jacobs" role="editor"/>
            <date day="24" month="December" year="1999"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-html401-19991224"/>
          <seriesInfo name="W3C" value="REC-html401-19991224"/>
        </reference>
      </references>
    </references>
    <?line 3684?>

<section anchor="augmented-backus-naur-form-abnf-syntax">
      <name>Augmented Backus-Naur Form (ABNF) Syntax</name>
      <t>This section provides Augmented Backus-Naur Form (ABNF) syntax
descriptions for the elements defined in this specification using the
notation of <xref target="RFC5234"/>.  The ABNF below is defined in terms of Unicode
code points <xref target="W3C.REC-xml-20081126"/>; these characters are typically
encoded in UTF-8.  Elements are presented in the order first defined.</t>
      <t>Some of the definitions that follow use the "URI-reference"
definition from <xref target="RFC3986"/>.</t>
      <t>Some of the definitions that follow use these common definitions:</t>
      <artwork><![CDATA[
VSCHAR     = %x20-7E
NQCHAR     = %x21 / %x23-5B / %x5D-7E
NQSCHAR    = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      <section anchor="clientid-syntax">
        <name>"client_id" Syntax</name>
        <t>The <tt>client_id</tt> element is defined in <xref target="client-secret"/>:</t>
        <artwork><![CDATA[
client-id     = *VSCHAR
]]></artwork>
      </section>
      <section anchor="clientsecret-syntax">
        <name>"client_secret" Syntax</name>
        <t>The <tt>client_secret</tt> element is defined in <xref target="client-secret"/>:</t>
        <artwork><![CDATA[
client-secret = *VSCHAR
]]></artwork>
      </section>
      <section anchor="responsetype-syntax">
        <name>"response_type" Syntax</name>
        <t>The <tt>response_type</tt> element is defined in <xref target="authorization-request"/> and <xref target="new-response-types"/>:</t>
        <artwork><![CDATA[
response-type = response-name *( SP response-name )
response-name = 1*response-char
response-char = "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="scope-syntax">
        <name>"scope" Syntax</name>
        <t>The <tt>scope</tt> element is defined in <xref target="access-token-scope"/>:</t>
        <artwork><![CDATA[
 scope       = scope-token *( SP scope-token )
 scope-token = 1*NQCHAR
]]></artwork>
      </section>
      <section anchor="state-syntax">
        <name>"state" Syntax</name>
        <t>The <tt>state</tt> element is defined in <xref target="authorization-request"/>, <xref target="authorization-response"/>, and <xref target="authorization-code-error-response"/>:</t>
        <artwork><![CDATA[
 state      = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="redirecturi-syntax">
        <name>"redirect_uri" Syntax</name>
        <t>The <tt>redirect_uri</tt> element is defined in <xref target="authorization-request"/>, and <xref target="code-token-extension"/>:</t>
        <artwork><![CDATA[
 redirect-uri      = URI-reference
]]></artwork>
      </section>
      <section anchor="error-syntax">
        <name>"error" Syntax</name>
        <t>The <tt>error</tt> element is defined in Sections <xref target="authorization-code-error-response"/>, <xref target="token-error-response"/>,
and <xref target="error-response"/>:</t>
        <artwork><![CDATA[
 error             = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="error-description-syntax">
        <name>"error_description" Syntax</name>
        <t>The <tt>error_description</tt> element is defined in Sections <xref target="authorization-code-error-response"/>,
<xref target="token-error-response"/>, and <xref target="error-response"/>:</t>
        <artwork><![CDATA[
 error-description = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="error-uri-syntax">
        <name>"error_uri" Syntax</name>
        <t>The <tt>error_uri</tt> element is defined in Sections <xref target="authorization-code-error-response"/>, <xref target="token-error-response"/>,
and <xref target="error-response"/>:</t>
        <artwork><![CDATA[
 error-uri         = URI-reference
]]></artwork>
      </section>
      <section anchor="granttype-syntax">
        <name>"grant_type" Syntax</name>
        <t>The <tt>grant_type</tt> element is defined in Section <xref target="token-request"/>:</t>
        <artwork><![CDATA[
 grant-type = grant-name / URI-reference
 grant-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="code-syntax">
        <name>"code" Syntax</name>
        <t>The <tt>code</tt> element is defined in <xref target="code-token-extension"/>:</t>
        <artwork><![CDATA[
 code       = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="accesstoken-syntax">
        <name>"access_token" Syntax</name>
        <t>The <tt>access_token</tt> element is defined in <xref target="token-response"/>:</t>
        <artwork><![CDATA[
 access-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="tokentype-syntax">
        <name>"token_type" Syntax</name>
        <t>The <tt>token_type</tt> element is defined in <xref target="token-response"/>, and <xref target="defining-access-token-types"/>:</t>
        <artwork><![CDATA[
 token-type = type-name / URI-reference
 type-name  = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="expiresin-syntax">
        <name>"expires_in" Syntax</name>
        <t>The <tt>expires_in</tt> element is defined in <xref target="token-response"/>:</t>
        <artwork><![CDATA[
 expires-in = 1*DIGIT
]]></artwork>
      </section>
      <section anchor="refreshtoken-syntax">
        <name>"refresh_token" Syntax</name>
        <t>The <tt>refresh_token</tt> element is defined in <xref target="token-response"/> and <xref target="refreshing-an-access-token"/>:</t>
        <artwork><![CDATA[
 refresh-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="endpoint-parameter-syntax">
        <name>Endpoint Parameter Syntax</name>
        <t>The syntax for new endpoint parameters is defined in <xref target="defining-new-endpoint-parameters"/>:</t>
        <artwork><![CDATA[
 param-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="codeverifier-syntax">
        <name>"code_verifier" Syntax</name>
        <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
        <artwork><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
      <section anchor="codechallenge-syntax">
        <name>"code_challenge" Syntax</name>
        <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
        <artwork><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
    </section>
    <section anchor="application-x-www-form-urlencoded">
      <name>Use of application/x-www-form-urlencoded Media Type</name>
      <t>At the time of publication of <xref target="RFC6749"/>, the
<tt>application/x-www-form-urlencoded</tt> media type was defined in
Section 17.13.4 of <xref target="W3C.REC-html401-19991224"/> but not registered in
the IANA MIME Media Types registry
(<eref target="http://www.iana.org/assignments/media-types">http://www.iana.org/assignments/media-types</eref>).  Furthermore, that
definition is incomplete, as it does not consider non-US-ASCII
characters.</t>
      <t>To address this shortcoming when generating contents using this media
type, names and values MUST be encoded using the UTF-8 character
encoding scheme <xref target="RFC3629"/> first; the resulting octet sequence then
needs to be further encoded using the escaping rules defined in
<xref target="W3C.REC-html401-19991224"/>.</t>
      <t>When parsing data from a content using this media type, the names and
values resulting from reversing the name/value encoding consequently
need to be treated as octet sequences, to be decoded using the UTF-8
character encoding scheme.</t>
      <t>For example, the value consisting of the six Unicode code points
(1) U+0020 (SPACE), (2) U+0025 (PERCENT SIGN),
(3) U+0026 (AMPERSAND), (4) U+002B (PLUS SIGN),
(5) U+00A3 (POUND SIGN), and (6) U+20AC (EURO SIGN) would be encoded
into the octet sequence below (using hexadecimal notation):</t>
      <artwork><![CDATA[
20 25 26 2B C2 A3 E2 82 AC
]]></artwork>
      <t>and then represented in the content as:</t>
      <artwork><![CDATA[
+%25%26%2B%C2%A3%E2%82%AC
]]></artwork>
    </section>
    <section anchor="serializations">
      <name>Serializations</name>
      <t>Various messages in this specification are serialized using one of the methods described below. This section describes the syntax of these serialization methods; other sections describe when they can and must be used. Note that not all methods can be used for all messages.</t>
      <section anchor="query-string-serialization">
        <name>Query String Serialization</name>
        <t>In order to serialize the parameters using the Query String Serialization, the Client constructs the string by adding the parameters and values to the query component of a URL using the application/x-www-form-urlencoded format as defined by <xref target="WHATWG.URL"/>. Query String Serialization is typically used in HTTP GET requests.</t>
      </section>
      <section anchor="form-serialization">
        <name>Form-Encoded Serialization</name>
        <t>Parameters and their values are Form Serialized by adding the parameter names and values to the entity body of the HTTP request using the application/x-www-form-urlencoded format as defined by <xref target="application-x-www-form-urlencoded"/>. Form Serialization is typically used in HTTP POST requests.</t>
      </section>
      <section anchor="json-serialization">
        <name>JSON Serialization</name>
        <t>The parameters are serialized into a JSON <xref target="RFC8259"/> object structure by adding each parameter at the highest structure level. Parameter names and string values are represented as JSON strings. Numerical values are represented as JSON numbers. Boolean values are represented as JSON booleans. Omitted parameters and parameters with no value SHOULD be omitted from the object and not represented by a JSON null value, unless otherwise specified. A parameter MAY have a JSON object or a JSON array as its value. The order of parameters does not matter and can vary.</t>
      </section>
    </section>
    <section anchor="extensions">
      <name>Extensions</name>
      <t>Below is a list of well-established extensions at the time of publication:</t>
      <ul spacing="normal">
        <li>
          <t><xref target="RFC7009"/>: Token Revocation
          </t>
          <ul spacing="normal">
            <li>
              <t>The Token Revocation extension defines a mechanism for clients to indicate to the authorization server that an access token is no longer needed.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7591"/>: Dynamic Client Registration
          </t>
          <ul spacing="normal">
            <li>
              <t>Dynamic Client Registration provides a mechanism for programmatically registering clients with an authorization server.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7662"/>: Token Introspection
          </t>
          <ul spacing="normal">
            <li>
              <t>The Token Introspection extension defines a mechanism for resource servers to obtain information about access tokens.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8414"/>: Authorization Server Metadata
          </t>
          <ul spacing="normal">
            <li>
              <t>Authorization Server Metadata (also known as OAuth Discovery) defines an endpoint clients can use to look up the information needed to interact with a particular OAuth server, such as the location of the authorization and token endpoints and the supported grant types.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8628"/>: OAuth 2.0 Device Authorization Grant
          </t>
          <ul spacing="normal">
            <li>
              <t>The Device Authorization Grant (formerly known as the Device Flow) is an extension that enables devices with no browser or limited input capability to obtain an access token. This is commonly used by smart TV apps, or devices like hardware video encoders that can stream video to a streaming video service.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8705"/>: Mutual TLS
          </t>
          <ul spacing="normal">
            <li>
              <t>Mutual TLS describes a mechanism of binding tokens to the clients they were issued to, as well as a client authentication mechanism, via TLS certificate authentication.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8707"/>: Resource Indicators
          </t>
          <ul spacing="normal">
            <li>
              <t>Provides a way for the client to explicitly signal to the authorization server where it intends to use the access token it is requesting.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9068"/>: JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens
          </t>
          <ul spacing="normal">
            <li>
              <t>This specification defines a profile for issuing OAuth access tokens in JSON Web Token (JWT) format.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9126"/>: Pushed Authorization Requests
          </t>
          <ul spacing="normal">
            <li>
              <t>The Pushed Authorization Requests extension describes a technique of initiating an OAuth flow from the back channel, providing better security and more flexibility for building complex authorization requests.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9207"/>: Authorization Server Issuer Identification
          </t>
          <ul spacing="normal">
            <li>
              <t>The <tt>iss</tt> parameter in the authorization response indicates the identity of the authorization server to prevent mix-up attacks in the client.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9396"/>: Rich Authorization Requests
          </t>
          <ul spacing="normal">
            <li>
              <t>Rich Authorization Requests specifies a new parameter <tt>authorization_details</tt> that is used to carry fine-grained authorization data in the OAuth authorization request.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9449"/>: Demonstrating Proof of Possession (DPoP)
          </t>
          <ul spacing="normal">
            <li>
              <t>DPoP describes a mechanism for sender-constraining OAuth 2.0 tokens via a proof-of-possession mechanism on the application level.</t>
            </li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9470"/>: Step-Up Authentication Challenge Protocol
          </t>
          <ul spacing="normal">
            <li>
              <t>Step-Up Auth describes a mechanism that resource servers can use to signal to a client that the authentication event associated with the access token of the current request does not meet its authentication requirements.</t>
            </li>
          </ul>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This specification is the work of the OAuth Working Group, and its starting point was based on the contents of the following specifications: OAuth 2.0 Authorization Framework (RFC 6749), OAuth 2.0 for Native Apps (RFC 8252), OAuth Security Best Current Practice, and OAuth 2.0 for Browser-Based Apps. The editors would like to thank everyone involved in the creation of those specifications upon which this is built.</t>
      <t>The editors would also like to thank the following individuals for their ideas, feedback, corrections, and wording that helped shape this version of the specification: Andrii Deinega, Bob Hamburg, Brian Campbell, Daniel Fett, Deng Chao, Emelia Smith, Falko, Filip Skokan, Joseph Heenan, Justin Richer, Karsten Meyer zu Selhausen, Michael Jones, Michael Peck, Roberto Polli, Tim Würtele and Vittorio Bertocci.</t>
      <t>Discussions around this specification have also occurred at the OAuth Security Workshop in 2021 and 2022. The authors thank the organizers of the workshop (Guido Schmitz, Steinar Noem, and Daniel Fett) for hosting an event that's conducive to collaboration and community input.</t>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-15</t>
      <ul spacing="normal">
        <li>
          <t>add additional context for JWT client authentication and specifically recommend RFC7523bis</t>
        </li>
        <li>
          <t>editorial clarifications and updates</t>
        </li>
        <li>
          <t>clarify error responses in authorization endpoint and token endpoint</t>
        </li>
        <li>
          <t>synced language from RFC9700 for AS open redirect considerations</t>
        </li>
        <li>
          <t>applied RFC6750 erratas 3500 and 6613</t>
        </li>
        <li>
          <t>resolved ambiguity around repeated parameters</t>
        </li>
      </ul>
      <t>-14</t>
      <ul spacing="normal">
        <li>
          <t>Editorial clarifications</t>
        </li>
        <li>
          <t>Corrected an instance of "relying party" vs "resource server"</t>
        </li>
        <li>
          <t>Add references to <tt>client_secret_post</tt> and <tt>client_secret_basic</tt> terms from RFC7591</t>
        </li>
        <li>
          <t>Replaced "sanitize" language with treating as untrusted input</t>
        </li>
        <li>
          <t>Clarified that native apps guidance applies primarily to mobile app platforms</t>
        </li>
        <li>
          <t>Clarify that there is no requirement that an AS supports public or confidential clients in particular</t>
        </li>
      </ul>
      <t>-13</t>
      <ul spacing="normal">
        <li>
          <t>Updated references to RFC 9700</t>
        </li>
        <li>
          <t>Updated and sorted list of OAuth extensions</t>
        </li>
        <li>
          <t>Updated references to link to section numbers</t>
        </li>
      </ul>
      <t>-12</t>
      <ul spacing="normal">
        <li>
          <t>Updated language around client registration to better reflect alternative registration methods such as those in use by OpenID Federation and open ecosystems</t>
        </li>
        <li>
          <t>Added DPoP and Step-Up Auth to appendix of extensions</t>
        </li>
        <li>
          <t>Updated reference for case insensitivity of auth scheme to HTTP instead of ABNF</t>
        </li>
        <li>
          <t>Corrected an instance of "relying party" vs "client"</t>
        </li>
        <li>
          <t>Moved <tt>client_id</tt> requirement to the individual grant types</t>
        </li>
        <li>
          <t>Consolidated the descriptions of serialization methods to the appendix</t>
        </li>
      </ul>
      <t>-11</t>
      <ul spacing="normal">
        <li>
          <t>Explicitly mention that Bearer is case insensitive</t>
        </li>
        <li>
          <t>Recommend against defining custom scopes that conflict with known scopes</t>
        </li>
        <li>
          <t>Change client credentials to be required to be supported in the request body to avoid HTTP Basic authentication encoding interop issues</t>
        </li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>
          <t>Clarify that the client id is an opaque string</t>
        </li>
        <li>
          <t>Extensions may define additional error codes on a resource request</t>
        </li>
        <li>
          <t>Improved formatting for error field definitions</t>
        </li>
        <li>
          <t>Moved and expanded "scope" definition to introduction section</t>
        </li>
        <li>
          <t>Split access token section into structure and request</t>
        </li>
        <li>
          <t>Renamed b64token to token68 for consistency with RFC7235</t>
        </li>
        <li>
          <t>Restored content from old appendix B about application/x-www-form-urlencoded</t>
        </li>
        <li>
          <t>Clarified that clients must not parse access tokens</t>
        </li>
        <li>
          <t>Expanded text around when <tt>redirect_uri</tt> parameter is required in the authorization request</t>
        </li>
        <li>
          <t>Changed "permissions" to "privileges" in refresh token section for consistency</t>
        </li>
        <li>
          <t>Consolidated authorization code flow security considerations</t>
        </li>
        <li>
          <t>Clarified authorization code reuse - an authorization code can only obtain an access token once</t>
        </li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>AS MUST NOT support CORS requests at authorization endpoint</t>
        </li>
        <li>
          <t>more detail on asymmetric client authentication</t>
        </li>
        <li>
          <t>sync CSRF description from security BCP</t>
        </li>
        <li>
          <t>update and move sender-constrained access tokens section</t>
        </li>
        <li>
          <t>sync client impersonating resource owner with security BCP</t>
        </li>
        <li>
          <t>add reference to authorization request from redirect URI registration section</t>
        </li>
        <li>
          <t>sync refresh rotation section from security BCP</t>
        </li>
        <li>
          <t>sync redirect URI matching text from security BCP</t>
        </li>
        <li>
          <t>updated references to RAR (RFC9396)</t>
        </li>
        <li>
          <t>clarifications on URIs</t>
        </li>
        <li>
          <t>removed redirect_uri from the token request</t>
        </li>
        <li>
          <t>expanded security considerations around code_verifier</t>
        </li>
        <li>
          <t>revised introduction section</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Updated acknowledgments</t>
        </li>
        <li>
          <t>Swap "by a trusted party" with "by an outside party" in client ID definition</t>
        </li>
        <li>
          <t>Replaced "verify the identity of the resource owner" with "authenticate"</t>
        </li>
        <li>
          <t>Clarified refresh token rotation to match RFC6819</t>
        </li>
        <li>
          <t>Added appendix to hold application/x-www-form-urlencoded examples</t>
        </li>
        <li>
          <t>Fixed references to entries in appendix</t>
        </li>
        <li>
          <t>Incorporated new "Phishing via AS" section from Security BCP</t>
        </li>
        <li>
          <t>Rephrase description of the motivation for client authentication</t>
        </li>
        <li>
          <t>Moved "scope" parameter in token request into specific grant types to match OAuth 2.0</t>
        </li>
        <li>
          <t>Updated Clickjacking and Open Redirection description from the latest version of the Security BCP</t>
        </li>
        <li>
          <t>Moved normative requirements out of authorization code security considerations section</t>
        </li>
        <li>
          <t>Security considerations clarifications, and removed a duplicate section</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>Removed "third party" from abstract</t>
        </li>
        <li>
          <t>Added MFA and passwordless as additional motiviations in introduction</t>
        </li>
        <li>
          <t>Mention PAR as one way redirect URI registration can happen</t>
        </li>
        <li>
          <t>Added a reference to requiring CORS headers on the token endpoint</t>
        </li>
        <li>
          <t>Updated reference to OMAP extension</t>
        </li>
        <li>
          <t>Fixed numbering in sequence diagram</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>Removed "credentialed client" term</t>
        </li>
        <li>
          <t>Simplified definition of "confidential" and "public" clients</t>
        </li>
        <li>
          <t>Incorporated the <tt>iss</tt> response parameter referencing RFC9207</t>
        </li>
        <li>
          <t>Added section on access token validation by the RS</t>
        </li>
        <li>
          <t>Removed requirement for authorization servers to support all 3 redirect methods for native apps</t>
        </li>
        <li>
          <t>Fixes for some references</t>
        </li>
        <li>
          <t>Updates HTTP references to RFC 9110</t>
        </li>
        <li>
          <t>Clarifies "authorization grant" term</t>
        </li>
        <li>
          <t>Clarifies client credential grant usage</t>
        </li>
        <li>
          <t>Clean up authorization code diagram</t>
        </li>
        <li>
          <t>Updated reference for application/x-www-form-urlencoded and removed outdated note about it not being in the IANA registry</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>Added a section about the removal of the implicit flow</t>
        </li>
        <li>
          <t>Moved many normative requirements from security considerations into the appropriate inline sections</t>
        </li>
        <li>
          <t>Reorganized and consolidated TLS language</t>
        </li>
        <li>
          <t>Require TLS on redirect URIs except for localhost/custom URL scheme</t>
        </li>
        <li>
          <t>Updated refresh token guidance to match security BCP</t>
        </li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>
          <t>Added explicit mention of not sending access tokens in URI query strings</t>
        </li>
        <li>
          <t>Clarifications on definition of client types</t>
        </li>
        <li>
          <t>Consolidated text around loopback vs localhost</t>
        </li>
        <li>
          <t>Editorial clarifications throughout the document</t>
        </li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>
          <t>refactoring to collect all the grant types under the same top-level header in section 4</t>
        </li>
        <li>
          <t>Better split normative and security consideration text into the appropriate places, both moving text that was really security considerations out of the main part of the document, as well as pulling normative requirements from the security considerations sections into the appropriate part of the main document</t>
        </li>
        <li>
          <t>Incorporated many of the published errata on RFC6749</t>
        </li>
        <li>
          <t>Updated references to various RFCs</t>
        </li>
        <li>
          <t>Editorial clarifications throughout the document</t>
        </li>
      </ul>
      <t>-02</t>
      <t>-01</t>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>initial revision</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y96XYbyZUu+j+fIg+17CJtAOIgUYNb3U1NVSqXBpNU65R7
9RETQIJMC0CikQApWqXzBvcd7rPcte573T1G7IiMBFnlcvfpdZvLLpFAZsyx
5/3tfr+frarVtHycn16U+duj9eoi3x/s5fhLvaz+Wqyqep6/XBaz8qpefsrG
9WgOvz/Ox8tisupX5WrSrwt4uH+539/r793PsmqxfJyvlutmtb+7+2h3P7s6
fywtf4Amqvl5/u2yXi+yT1eP81fzVbmcl6v+c2wvGxWrx3mzGmfFsiwe5yfl
aL2sVtdZtqgeZ3m+qkeP8+uygV+berlalpPG/X09839mBQ0fX+nn1Rw+fT7I
vyuW4xV8kuf18ryYy9we59+V0+n/+3/RFzy159Xok3m6nBXVFCYMnw4u8NN/
PsdPBqN65ts/GuTvYMyjT5Vp6KhYwuLZz6WtAr/45wV/IQ3Fw3r7aVXQx7AC
j/OL1WrRPL57l94MX5QRnA7yH+rxuFw2q1JGzqM4rfGjeetbGcuKv/7nqf96
ABuSGNHJu+NXb55n2bxezuCjyxLX9/jls4PD/Uf666OHh/LrvUf39NP7+wf3
5NfDB+7Twwf3d+XXB/sH9/XX+/t7/tcD9+sjfeDh3gNt7OH+/X3/q7b78N49
HcOjvb1d/6u2+2h/94H++mCXHnj67N0e9wCHjO/D1nEJ6zsr52OafpNP6iUf
yDJ/35R5PclPl8W8WcBBzH8orsulO6759ukPJztb1Jo/ifhDO/XjID+5KCeT
cmk/PYYTWk//aj96Bw8W1XzVP5qPlyV9A4OBse3vwkXL8/cnRyfPXr0Kh/2s
Hpfj/Bmc1GK0okGt8n4/f9AfVqv8aFYuq1Exz09WBUxsCQ/C4zS1V/MJ7ysc
WbqVo4tifl728qM3J6/y/3kwuJeaEB+xLdfuG2qgmLoOGmisgbGtV+WWmcEe
HBT488N3R6cfvh28P/4hnAR8wE+viuV5ufLnf72cDppFORpcXRSrq/MBnNC7
iWHJneDmTbevi2tYvP193/Wzt8cnYd8vy9Xowo3/cY5P5ItlDcSnnqZHNcFX
WuO6g1/3R3C/+vr6zxjq9+t5iWM9wLEePBscv3jW/zyb9oGoPtzb2z8MB/3i
M9zhphpOS5jj8tN6AUdyfr4uzsv0iK+urgZXBzTM0+O70vbduI8B/NE9ZKA4
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
/tsArj2X7/7xpzz8oWHjh/RF/G37p/P9b3z/+9j/+6aVrrehf3y6f7v+w2sq
7x/RUbj1+KVumh1/cnZd77fGDz8DN/8DnH+CmsB3/5B4//e89z+F+9/xk9j/
W++d/vwv/ufyF7z6kxu1NHP5C171c7h5vtGrfqQ//SMu9b3upeafb+yrcqfM
dKNbkuw86PXW022/+g844Ps7NKz8iFkxWyH77Z9vUsu0fXU3f6tRB8fCLaiJ
HUukvjzO70yqSBhgrkVkdVWtpuWTrcSyvYSvt4Sp0aPVdLqmaHOVlDa0+/Vr
h72SwFeQ5QNlCsPdBF288SSf4nGXBtwgJv2iRLTwszuyD6P+eHgija+adtxd
j9m3s8Pl28AEvcW78M50flDtemqINEEhgZ7Z899M6xFVQYJGOIqx4FfD2lN1
fkMqNIXcY6CpF9TNqhBvq+eOSSNfVlV1mySieVWOMTMPyPUGO9tNCdf5tmTL
585ByCNg9uszqBtb2DvO2qb3xeeog7PpfN+4+tDehwxkFvQwdBp0AHZKe/xi
yh1Kvd5UnE6FBCO9eIis9r4541RZLKcEsxLB7tTLAGMvkdWxM0jUjGtZzBMy
J4f1XNsD1lFRVCJJeIi4lvfCi+nSEeIoig63j1nJb/RRGw8dVm9LyP2ykOJc
UpwnKfUn4E3eIeIi8u0NFFX3g8mqMOve8/vVNlPb6OV0FNgE/UejIizRqUq9
oXnBnkVSf8eysdcFjgVPxGEHAKv4WfdSpkXRwh5zV9FzGz//9vJHj4XrqkjG
itNdrFozjbaPzJ+lr0yp63BDBQRHpOU4YZk4uORsZr85ClDcb3RfvcklEbjn
STEmABeh2iXewZA3+uSAkPWZJAGMLjrfbNA1cxyuq6lYEcMTYRAqqdAuwxIY
k0iS2+nN60KNQLxLe725hgJGSaw3labIqDNgHMKQlF3be2XqiRHEuSt9LDjp
I64Vjm9sBcdqq0eJDcm1EjMYY3wpxnabaFTzv0i4Ap5QqlLjKh2Z2TIKifLt
5AnHu5Qzo2/MWJ0UsMXTZ/vWpl22HWdOXw964xsqQDvdJFGz3SNi6gq9uYvY
YkodaVUXgozoEruKlRFSKs3nVfsL6PsUmtLY3Y7OZSDlZe1TyvnKPlG5TuVL
2lOaFS1w2U2pzY8p6I1tf5uCSjs6dLmivkZNU64ajvppZwebCQbnK8ov0QhW
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
f2MqmZKrCxL+HVOz/+zs7fd6jKxXlesV7ifLnDXFEKCSuSIepVl7o+3DKHxT
2FOrku7NlodxlZwD6uwi0HzbcFqKsxUnu+hNtt9uLM1dzXX+njNaoJD9F0iC
nixnKZnyo8mDySNlIAVbIQJGBWpbfOPihN1wMASV9FmjRd6VvptI2zqf5XV5
wpi719lzGTPaO5jnOD4hsykimQ2xPjDpbkV52vKPBpnLqUvECyulNZOPr1kE
/Bf2ptEZy4wGB/6TKVFTXYKvQyZKZD3ix3kJoMg1noOOQwNvruaUucrZNOjE
TfDCL+Ps+ehHOPhXDJtyuFpcN8q4aNC9mstZlIZJU9zhTCCeQz+lmh7RZ0p2
kG6xrsgB1qRxd1shNiu7WeH1F9fEtIa5pCYpmgELP/ckULi5bgstibc9wQV1
nMH5Shj5uDUU/05ysr/99nL8fDINe39e341bWqjxr7frMeia6tkYF3On9LPo
rKUgnUpzp4SE5EwhndfW3wv+qgmQLGxX1A10PsUpwr3DpxUcZIJSrGbCZCIu
z9FD6kO5ik8sotkZU90yChFohAkUmSmDicjLi/fC/TKUEVGV8HDycHI0+SZR
CkMVGq47Y5Z8unBPiskmRLqpOqNWrBkpq8sKKOPZij0QZEmVqYx/OkpcFZzd
3cDJa6TG0JXx3hwIbhaL9mIDVCHXCU2KE76SGf5k5nM7QuLZIGNMQot4RcnS
TzfrdbtAtKCahT1OskqGkdyr24J5LLaPmDcxtw4PSwjDK98mVbDf6vmcutN/
/j22hSoLNgHSgYN5vjKbWzLwcQ3GehKEFSSYd9DZlBYJN5hXDf8Dj7SiovT9
JqkkqkVtjR4k/wohwAqwuUzfX1er2RxcGY1msFlECrc4Ck+ZIzDSLD40mj9c
oS9AHCjZt0vSctI7T/Axk9RKinG9hkofiR85yxzQAL/sssxBkXhFDp2Qt14f
bA05QsrMh9ldo0V5ni8BHOaFSUIQQ7tywn3Gl+RDpaaidJ5JNIRTB2lgzHeX
+s/j72mex28Yy3yu0XphXmd2FZEZtPrG1dMNsIwuZA9NoPTzPDloorUT+Qlz
jEbzTFhZDdd4isILMv5OD4LtGvyN8ji8UvhzfMxq9gq5pxWz5wVJ5JqFhsrT
wlWc/9WzV0zdbX0xFuEEp3S163kkIqbRKE3feqFxtWMESYm1ii475dpSsnm9
NQcRPLhmURCvSxA/ZiTXP9YXkwM5fK3IhZZB4jcb31WRNzHyDz7GiI2pJkyY
nknWrJXIO2+QQKZVxRrjZAeDNM8F35kDPVAXi0hx79GcXlUyJB07kSFxn5WH
eXtbVDMqMwIEvXWO99XGFVzre6LVXl6sDs4HsiwcupADvbHzBBVMx3r1IEVM
EUqig2fkhYs60nVs1HYje7GMk174IpstO4jfh16P9VGnKlDp4YMUUP8OCud1
cEtV6jmrAO8zCMSPsis0okUxgxlRAiqoKAxm1dJO7bcmVNZYIwfzykaZYgtU
PzWxAJ9ri9xhQc8WNS35rHPWD2j7Sqt3flCs2yuu15HDDT3vejdUf5JsRiiU
zhXXF/XHoBjWJHScFXj1I1Mg7Rur7Tn/atytLs7D5JyEU2cxXnDV8QfqF2Q8
n5JO5NIumEPX5A8qvimhXw//zRuZHh8elm/+gs9Ea41Va41Za31bZpNQovDy
26++IkNGRjIJ7u23Tw4PD3ffKb5V+SWB+L7E5ZnSDkbFjz+++Xn8/ds3rz7/
rMlkQjRe7N1jg3tNMWsTd8eET/L+QXCu0b+piAFgbsOi5YTQFlkuhukJHE9q
cjgJiBfrMq+vqou7ZER0smkpPFEQxKa8xQ5A7aR88QEssXxf9GIZJR2KswNU
3ofxiXSe3JDxjgJKMscjgp728EtYUkIe2QizfQ9dB845AWXAqKUfKdkW+otr
kIvDIzB7OnNRq0Xi84UXr6iL4j9q1iNYwK7wBPuWOHY/o4PlQhOKoARBqYU3
0sMGy3g785vI4QUS7U64w1iADPlRGAUE122vWpRDBr+LnCGjs471QhQwHPOp
vZMVwWVJmOEQnNlL35cL9Qdo9+NNsPgonWZZAuAcw9vd+ZJiXy0wKpq0QHN9
bc6ohBzNbSaonaE0sm6cIjsUWTFQBxdhBJtyMdaftSsJ9dGnZfxU6i7MUBH+
0tVt0PLk2IthKW51IWb/atqEs2V1x9G/qTDQM/JR+PdiQzVuBxvtHAYX3jAZ
iesaMksdKhyDFM6tIukeO92VuA8MeMhSItIWCkshSYqR8HtYGI3dB4VBUHfL
HxE0ZtQBR3PEbSJXgahsL5kWkz6F27LacM24dL6jeiSYVyUjOCZ5ow3v02DP
2pYNPn+svAKmjxepiIskcEoplKRMhl/tdiWL/Uv8xS9UdoPLP2UErAS+YUbU
XBSC6X8Sif4qScmmI9G8GfYdqAixqDJZzioFYjDWmt7wCRthhkNZzarLNXgM
QMR20tox5WQh3cOmWv4NiciGx+0Vl0uiSqXvWMhT/AerLbi9ZCy8F/ng+pPV
prPgO8kJHBQsKwKMC4nyyAaRm6lnPrUQm8brGdvAvdLWsRgmWQpEL9WmTCGG
IsCSYVkTjf+aX5R21e11kHayKWC9at8osaPyQB7qWwV3IcN1jsdskhfvmCGX
j7VI/cKwF978fHJG2I32tuqWLJUInfUrx8601jsX6aL4M1mVlYRKYv2OSShz
9VKPwDCPsb2lKCysWyn9zAd1PvLYdNTQqia6+IBXrF5R9spn16KPzEjtYfM9
uADCQJsqHFKeLLKg6UT2dD/KIXGZE4YHXiUzF3fVZQ3H4V790QwMbB5cslId
QbnpRGFprobwaj5pjpLJhLDGXifLPzTch67gvIuCPH3nPIrau+LK/oHm0bbe
bOBFRpwwLvFFu+KuC46sqshzJLJ8/UQZo1+TB+DgKezgMR/OipspNiuu3CBh
GpchPPrm6NOnghtvqS9hxbm9oyAY/UcU0YAxwQSEjGKTqqFFTWbFIC9MPHZg
bWvxlU09x5MkH7W+3nQIIBL16zDyOBaQ+iWWe3sgH20Xm1CS4Mm2dxD46TCt
Dba0Ewg8acDKkRzfPKZTdN3CUXWp/R15iE53dSNunL3tPYdAlhpRV2IgS3MK
JkxgiohSo3lwy01LaNYBt7ewqse/zeoL7nrmvtgFJyfHQNqD6qbN9poCQ5JF
KNNivPQnuJ/iL1JbqXcnkmoKqAo3IAbKJzCXoorA6QM+t/pdMx/AT+sE7Z/z
QvxbcKPr8wMZZyoZv1cqkonYLQWYkvspuMFJ/xzoKGdJ98c9h2Sk7c52PL6n
zC+Gw4JcKwVArkkgk1iJ3mWIxcA6FGo2jWRDuJu2KewQpuqirlGtLrawGQCS
lIM8lE+V+QLhOsIqEJ901yll5Jb3pHt3nDmjamOjXxEMLQ7zfiY8jBJlIi+V
uB9TnvAg0WXo37emljezIGicY2JhReBwhWoyBCnMcRA/E1k0UqNGxEfPF1wI
BWQxsNt2RQTyyi5CMz2twwczsRlfGqakTPkakpeh20lFl5BZBg/4Hvxz3FP8
fuc0Si0wZk6XJVBsRTNzqTxnpHGt9sMdltCT/yLUe0moGlx0YWwR2wxoqFJX
8QFuJCziw76ztg8ao4KxjKWJec6BuE9sRzhvia2smlNcTPpvc9sNRhy4+EWP
PQEZUjDsBmedHUbRf5tqnjQDs4pKfx9NXUMQ53Ul/KNc7LRZxEpZz8sQPOYF
5ZhnvQ7u2agLNzwVJvJf/W93je3lgmuFkmnsNpeXFHwllhE18hVPoKGpmEju
dakZ7AA2+HLo/EWjLeJwu+98f7ykQ0/TxdZSBhiUERqOyqDtX1s7dMaJJ0Cq
tNffNvfjVfNx/NPS9UgLDvVN+GyzDN7zK/wj5acg+b+oF1UQFG0KEb705ZtZ
rrcgBg7t1r2F+A5tDEl0Om6tNch+2Hg4lJIZ6UrYMeidUFyI4zCJrjTpb7i1
ntq4iXGbZTUUqUUViA0z/AxqBnZAt4BeBO7KrcnD6dN0iIL+LDGRZCYRMlm4
9LkEgfMpUsYgKtLFmlGX5nrR1arNlFGOEQW/a/2IQaXYuX4Rfp9jYPjI5yE5
LyTcMDYdFCwIp1ib7mKjXRgS10EYkkFFIe/WZY9D/xYJpFUXuYvqTVAuExVi
rk6ski0G+7odAYFTCn+b73llpz+fMgI5p8KhbV6m5a2o0Fojq8a9UujpwOOb
7EZpdZtpR4NcZL22jCo5S7pSLsaZdAC16YPoqJVJwaKGuSXHDy9ghIaFAnSY
L5K4bjvmOI5ESb5ll/eBe1NR+ASxjDwNxVar2qPKVCKovZRgymTE8emFiHv1
oWrm/Nb5zl8I5ogl/nhyuEUvKhbJwY+KRZ+G43mQ2BYEer/9xl9N7COKS0gp
1yjps7lBjseP+1ITuesNpzz5TMAfwi8hOk3mQkAx2BNEW8qHkrQzZuozKZEt
h3BSbsHUPyJx2lBiOipZmd/9dlX0pvpgaIu+Bk8BwldgLtjlciP2pOg/O43J
0xYysyLXG320LjmZFWuwzcLp0/Lk7Ms8gGDChVBmV+wherlHQejwCQeg7H65
QNqcNCuofYXg5kfyQ+tgz7FaobG1nowcK+QWrSjnzWr9s1fmuKGc0c9FpdPG
fMnL8VKWQ9waLuaTy0Tld9tUkTreNTEwXCtDebqbhoAdpsKyiqyf0+Lo/obX
HyYcb9BstHLVSvm1RSn2hmOKCx17+xKpkQqlcw+SAK6R/vOqqWBNDSrPRtI7
Pg5xEOleRc+29eD8mJmhxnuOW2KordOtSfvi3o85Fhccd9NXKOBcCBMil4Lw
3LueDOHW5wplSEOlMT56MKGBYIWGqf/YBFsQu8s7NURX9Xqziu2Vs9VEpGZg
Qem1EseRB3jBPHJ8J30KZwRwpksGOf4g4TWyO84GsKHfHBMrJ0wo6ga69pvA
96G1WGFMU3sYeut67zkbIWmM2witlQA/xNurhOClQ0LPnq1JA97T2/fycyAh
wlq8dT5pVxi2R+6XWTvomyysdxfr1KE2E4jfgYujEhNykqXG/jeMFnVpdcKm
d7KfVQtsH6M7Y2Tf0DdW0HWvYbSL++z7It33bEUMSsx008yDQtwsW9fJno2F
y3DGsNyE41arnIXRkDYR6cvcttY1kySW+BKgLNAZELzgDfFNmN6R2aSaQ8DN
OuEBD9ulWgBHxDzjHdcLzjamj9cCYqV0F08ce2Fxi3oXR2WawKS8DGwupHEV
sr7ZrbxpuZ91fhI7is6LZnWxudFgnwfko7pKiXX8nMepYV6NRa1slTG0t3cd
3J5ujQPbM3FKs3TkPjKWt2C6Mny2z9Z3cjaUDaGrFtQZsYiXp7lZoegH8Yfx
UkV+ehtt/Igqs8jOqW+JHoKJlvL6e5kH5Tk3jH3LXdfF6LtUrKAjxk2sXdIx
rv1ArA7zbQjs0+DgvzbyJsev5KQWjVwQbnapnVlk3gUXia/5yMhM95tJPaGW
1N17Ahcnz6EQJj/+pp2GbVj4b6lP59DgVJfDkEWVkiPoLFwttlaXjWIt3kW1
5MI2bre7mFlPIC12LYhhYAWubwk/Xm2aGcgFG4mud74EiHrrNvDOLSbBTTfS
NwM5FsFnAF/n8bkpkSh4+hMddcedbm7A3h88MONy4gXgm8SLfU8djn7Ed7aa
JUBZlktHoUCnWDhio3MoCg9IzSj8JJdk6NFqrZPZ8bNx2V4oLNi9/6i8IXek
RSCWK6vBl1ItCgYLZZOijJyDcWCzy83IHeot79R/bMLi5fPLzsWIeRWmAAVI
uxSrxQW6otC8apyg4ZABF1lYRN3lo/Zj12+EMRk5cVAG+WXK9Yp/KiWZSd2m
VL0WFPxxyCFWObf1dEz9YDot5Vv0No+Q9y7XHESozR53FLKDDHgLc1Myqxjn
Cn+GA8lo/UGVCZELy02GSEaeLZZYYhAUyvm1x61SuKlG8Mz2gBEK5lYYJLlu
fO4VrlmTKd28TwYXf4DMyUfvOEKMIn2KWYWDdwNVsrwbh8/Gy6pbW6LC1y0U
4WBgDlg08Jy7nqMjVZX8tVs341Mj5B5BKq33eTYBKYm33Hd83VIWIhIeuwio
ssqIL6oEdqQCgt0e6ZDiQttBodu8LyVBfE6tTQvXr1edMmZfRp2NLbrm7uQD
4toV+/yb+d0uYcUdB7aS9Q0CspJhTKuWLFpCibGltKpup1xLlZZf0IzR9QVD
1swqCcvbZxVBwE4aPDsKYE3dFAttcJHVJmDLBLVIdibNOAccl0vq2AJPLJ63
3VjnB2fMmOdH+DsoNFAvkTiq5nddY4rbXo8+4P0yOM02gRN/mm9rC6QVROxH
8x7RskHQ+BILi/QeYxAsp7+Dy0SnQ3Vl+2KwykfqChPzYFI8TdZBn262dX4L
qV5M+/wW3LO9U/w/2XVjFDxoR5IZGizTevULSThQO0wwSgtHcEwOBrNXReYn
zeK+YKetH4swQg5DK4ApJ/17xghqfbl4JZ+nRpjv9lLMbMn7Nl3M/2j7JpRN
qZjzrjFGLaOC7+K3xfDxxF6rqgRUfTB4KvInmRFBZnWn8OYaITZkteGilr49
u8H9cBKT4BdJvb/2MuJx69mS9YbnuG9HcUgCUlvnQNiknu2TNK9+yaSJuvAz
slULqEmUbKAs8bJcbqZzIlKNM+77EsBv0hicdym6KBZkVFqVMkiEumghTHZ0
q0xbglHEkDr/6cuumNNJrALpowXCVULlaUE/WWvkszXTjfQLsvKYhMgknSXu
McjwUsr/Q3FQSCQcVstYpgvViAZ0dbUSZu7gD9YzuYHQQoGeZHehkaHn1E5X
86s3IwMLoVZB8uxRUXVqeVNegmiaOTQ0re/aiF1vkkioHoXUQ0iBgXm9fgTa
6MZwuO0tJYRc6IUaBn3DanD5+B0Kfofs3EzjOIy3T5xWKp+BuKrFsl95cjNi
0uCOMBDZT5+EuYN4bLijFy8hP7vquJdY2iPNdUMJqyuM/oULjGlWXNhW/Ebs
NlNmg25t8pN+kBKL/FzjOwpKClWuy7gmm8XyX0kbPR++CD7sC9e3TkUoVmTN
m3B6PZfcruxP/8DC4RcNDIcDKIx1rI1MU1IfbwJVhA6YU6ABrC4026xpImx3
59pxaauGOYeM2uGqDSZADWu3o9aVCKtXMy9bKGbmk7UYCAZZL53G4bTVLC2l
E+aFnojoEmvhWASJaDnd8p2s13W3VliBW8IqfvGJ/ZVg71yujfRfoaVETNDU
60thJXA/G6PRkG//GywqnueEqrp/RqFgwe1Gq14uqvJ9fTdmgnz3qCF7Yhuh
RTvQ5soQCZEsQdjIufKWVLw1MQhHbuXcZr9PccRwHeVLnLE0xeQ4PPPnrDOp
wyomB4/CynGuaWbSXS92G52tcJyCLlCOxl2WBLyNnXkiwa/hR8LpjeIUHkm2
OJmDcY9hNN7ejBU72fCKPHHlBhSfScV7QUBmFGMTSwuJckUp+IJnmiibPUIH
LoL8Ud1CsO40dwZDReJC0EVsPHvqucym9fwdhSjyzSpeXNMxta5zu1kfQutK
D0IB3BWqk3Qs/ggS3ocSROXJm5qrBeg5t91jZtPUWkOUn2pqGRBIZx8ZBxqL
gS8ubxnMZtegVStpO97DPI2wjM0iQlJYc9W03XxbdI12JR6Pz4rE2IsDZ3hg
/I7gjRm7lEoQdgny2in0PpzOzqRQhW/fcr4o58kzc/jNOKpEIvhlqvGByADm
5ZatDhPnLbvNM9y6Bd9PzqDhPGE6nIkUZmL76aunp42SSUn1m9P8OcP9wAun
q6eOtiHaXYmU0GDnXdV14pEzGj4tQTsDSgk++sjTHiwowTXhBBmcfgRR5wkT
oSSfxJhM1AedZpopGoS7st/vfb+tTDLCoIjlrNgZQPSEN86gHE6Kty6YyPKy
TXBTfcg+o9mHGtjqjX/wFOUHdYOKVuMiHETU7AVPw7CcF/c5VXIRJ1IvS5/F
kDjS+e3FRiJQ95V/Mq0WdwPjY/6CQl6MIYIQB0tgsjZkDwtlI7GYtgEpM6dq
uIyDyQq21qc4IR/pZAKwWPSb/Z6cvsSRiTShDmZrMHpSvNNg9EgiMr1rJPHU
yfl6WQWnUzXcCNNRNJ2Na+7OIiaUyOhQ0SJZChuSbsnsasuxynGp7yKoMIad
I8XVXLt/WReqCCIP2uIqzKCEn/tvZS2ZN5108M3declh2JDMouCZcA2bBo+a
LE4KURqcXuX3Kczwnc+Z0H9AD3JAzlSRmOJgDRqO9vlAT8fWR2WvQlOAE97m
AYTug/MVKTeTPZ/51MMBNnQhrWtxcXW1qIUlhbQ0rUazX0Q65xjRzYyTZDvG
PAPQW7FzGWDUmzWzXVA9mMHrEgeDQnUUkoq6QgM8cZqkb3bkUtxrFqQgYll4
Ne32RhFJC+sKxj6geAQlq6Z6Duhd6bhSVA0CZWy7aaCvC/+4uBZWOuE316gD
eJaCnxLNTeEasr1hSyWBlMEYrfUEI/vMWMDeLNxkGCD/Ttz+pcKUGDLgdgEj
l6JZy1GiblRqDXLHy5JMHU1MbOm45TArECDwoLLcBJHzAC0BdlogfSXvEV+a
40rLbDTT7hMnSccjOHxbMW9lP8fmtGd4ab6vVdXwpotZaFpbDmURgwVRDt95
85cr4zlTtgeFuleecft5Gr3jRBBJ7zWSH6Xlv+p5DlwnvBbilTGcS5U48EoS
9olIyOOsOuFA/ZBZe4MWGRAtIzNleJrfJRRvRh02MZzGjODLUZm1s1wyQ4JW
wUTIWjLZ3lQI6rAKNtq1D7TQlJGQzxtteMXXJHFBEDr03NYq7e3QZX4sd5XA
NiqIzNE6lfpc3KD2FMta6qph+xVs/Fn4JqljwjnDXDxNJ9w6SllDZphS1gTf
7SvEVI71Bl/JV8pntwIrYs/4q+bIPzNut16ggGyddl9NQu2FD3jibbbF8aNa
keaV8Ju2xf0+lTnYBwY+YmgUkSKsLRP4Swg6r+uopevNddJE1vfxTm4MDrKL
dZnGu05cqjq1aDJ5AIgDGC7LpBFDLWCvyFuw6ZIY1PJ71UHMDsav7BpVF2ya
0fSLmcDyfbWpQKXn0E9DAiZHd77hXci/1JC/13tph5gbIGkwkhShxEeIJrJE
Y/3Ytkt4qS+N5DFlb5nLBWNjSTQuFw4YesfRYgbWxGiJ3BrOcTHf9IbBy6SS
xfeObFOPXPU/FVgExraO26RH1AYpEtCHLArFqvRU5UHS+8QeHR8ZPYYiJvL0
BcMc2fykIqR3FCNaxAy4Xc6OsRshGq1IHv7yNJh/a5xv9IPbMGc15yxXaVvU
DrxcHOoQSDT664z4sUGLHB1/PTkM/+/o29/o15+++m0Z/M1PTET88vTDQ24h
qZf/7dtvj/6+5dLHqcJylBEKrKP7DU2h9Jxm9mkqAlWgHz3Hqb1kvI+ODg8f
3kPr7RoRhn2PERU7RsRT8vjo8PjB50fDCNVcEnQ01MK8PAcYhWAP5wK4s9m3
b7IVOIgRCokxMADLCYxVyHZWVQ8uC/ewIC2U6/Pta4Obz/R9MF5TZgo7aAfE
svAIKP8MNMzsMk5WL6P9Pd2JEjKYXH+5qOJ3bQ3nKMdf9Fl7UTBD8frL8A63
YfuzR3VD5T3m3wJtQsuAuP98w1GfhAlVcRCfKZpX4rA72ZXwzMRfqWfSIKkA
VMGiShJ+C9vJz2kiLSPhlSc0DvXLtZw6R5RiczgzceslaRbSFRiIWa6m6QpB
jshhNDAkBy/3Xeg5sW+nmNCeGdV45SzRgtJYLoKGsyIsdXkqiAdbQu+Me4r6
wlH5cwFfu00j84ZCHQI0Djjowka35o+wwWvtB+vhttQVZdV8CBM7/qljG1Is
8PRMW8pF4W7jYJeMWX1TjS2tuCZ8wJvB5woZBxucK333dAvEAtUEan5Wxrki
JruBz91QALwTIHm5H5nJLqim679tGqmpv6xXYqaQA9zD4nV7BwWiC+dhOGZi
hueeD1n16FYo/FXLpTZcAMASJexVVBZVPlZ5YIyECdOlZU0bCkhF2z6MmGF+
mXBi0uvFh2bVLm7ibtD5HX6qsTeKdi6SNKP6RJU/mY3jai3dKwGKxI5iDlA3
Exo9o9Ar7jApT5i2cZRBJLYtINkBHzZzgtaKFjO+PiNha5W1K1USRdeysceW
W0K95fDncLYMHljS1IWr61kCHNsFT38XkzC9FGra/HXLW9q4R3n4Vxa96wVa
GKKBlNNwlIEDLOTXRA6CNOLN/Evkhg6LBrku9wGkap33xXXbSqbB3QT7S4pt
XUZjuRzlGa7C/WqqvCOVONZsFfiKRUOI1h8pLMUVpOi2tqJTnTL9I/ZhSZ9w
P4fpnXPmH1gHva8fffOIyxq3TEUnldoG9pWYmNHHr6gTVAwDiA2TOafnhRrR
PZ0iQVhqLyDbhIFlQ5wBnViGOUqIORBl3tw4uozYXlBCR8cPHk7oNNcufTqe
cCCdK+6WBuwDqjLOwr+mlvzI0kk/WSyDxSw43Uyt4Kgb5YnKvYb1zm/uaBZc
zT13gaSdJnHWxhCLzD1TdQW71qhVGhQXFcy1xcMMXwbRk0QXN0Ih/767Rrk/
Xwku8IJ5kjrJVQFYqbuj05JnC3yGK65W7YYSQz7oWBhCFW7s0HLJfI0ZoJIu
Hryzwv9MojRorq1LskW/2+pwIixSyYRDpJ4vpXf7monC26DPbiDqes7qCSPT
jris30EaDHvwzZPHxMvLY0HRWrGgqOKNA4xKW98tA3WmOXPgFAohmFfddbl/
/lWw8Jn5MewAYwuTX5NlEZQduiieSBZ/nXA4V0Pqj9XVNv2nwaZst357Hw+n
Hkr0iWmsw8t4xJoY+eoUYDLYZpWmmUDsskdWNyhnK8uTPg0Q84BstznwzC5s
i04hVL16Az6Donemh9MI/SOYQTWmCek86YUYESpc9E43jI3H7zI/0MPbo84c
PjfW/2e+WKrrwYPIln2hGPOf6PQ8uZIqMH9hguTaAm4vihcDYPVSSutBcs2p
LsdxQ/gaTgrLu0RgThGDqFvKDRjOtCDWSE2fsc5qVjO1u4rPxMGAkGi4KFIU
hR1c5OaxxAzV5ly4hvPR76OGbzvbYJA6/nXTraPSycYmyAVkxavYoLFQRYXE
+jvrfEiHTyww6oLJM20/RpRCLq3wbgZ6jP5cT2ksCzWuwWaFO1C0VilVma2F
zLoZl3Frk2et7hCQQg7xppTswAIyX5XWbiQ1SwJjrMGy8b4OY19RRQ+l81fx
2OQOD1yf1VqdEz0BZwOb465xYkIbxo2jSzmCwhF+h/5mXC7CtIhC7kJQaQVo
WeGIeIlrIfs1C9eBBmfCJtj58pIwcaBRF+yqLBUTj8m5W89bwfw71hYS6Du1
L4aJgAY3SbDb51qWH7Tc4oL7K1wWzLxEii+4oVfYOtQh11qygsKsRSj3Nrzc
Zp625qVWpkjmUBR1lLCECyrMsmNcUtttOAwT3p9yPKvqSrE/3BATrTvzht+D
dXGFBnB5TqmQq5qhf1KwGBgCqC1vqHMj536lQzxvScnwigsojoOVXVINVQOE
s2/fqQtIg6XMcMG+kSRKg8Gpql5CDrE7IOEevyNZllXXX9HxUqBpRSdyhMAr
HWdv/jI8J/rm+i4SMwWZJbgRKUHBASwN4fiMLzUt67YIirYpoASynS+9HHJs
SMDCKhNjSTe2hhrujGrzJc00YWdjS2/xyRTCH+QziFOhlb6oRSZWhhpUdVnC
lOn0vii/p6KlFwploMNsPHiY5cWSpfaTb1Lc27Cnei1H+OqKgllXq5r7OCs1
mbZ+whhjtEkLq9w2KSJa4JJGPgDCGOnQRtt2wk01Yx+SKb+ZomkQ+CNkY+F4
umpbaKZ2pYhgVJoNYkAwD1YH1oitzp5FsjtMyrAu604zaxfkfejj4JZUizty
u8M7CzXHEEhGui2Go+aOfs8eg+WaimswgIYNyO8Cvr34Tox6iW82ePS4H6Rl
ZFiMMEhyWq6oUvS9CMRNQpiwRuLmzQINGWJfBMnE8feCmyA4jG8GbBVxYT5J
k4Tj9Ippr+ZBUVKgW096igsFzcJwlIbqO+e3UDdEQoGobNgot1AlKNkLbkiY
tLmy2O5rkXrFgXzsWF9TNEW/hgLsOsIqoU3ga40gglx+zVBgZEMJRbJcxVR8
kbz91joa85XZ+p7fWb9EJU1JtkHhddP0LioWDSI51XSJhRS/yME2iLB0cGN1
6E5Uo5NIC1GJUei5aUqmfthYZ0MV8Vh2UgyhW7gjCNllSgDqamxoYmneHLa4
yNDEsCENi6RqvP8kMU7EletrLHiaMGu5D1zfKIv3Lfx9pVmSNEaGiZjQoKjC
fWXrfi+tS/xt/Z0Sa3W1IZVwn1UpAlFKt2EHZ2l3hL9l8nKDN2nHrWIBvYwK
ovvUzGYYSIYFTHUHl+hOqFkL0PDTEF2nFOLaUjvbOJXXyiEsUEQxkiRgg8kQ
EhM4Cd/1ps7lo0D7H35JjTBvpRm3Hi3CusBbe3HVAspMRMVr11eXy+oKdkc2
3HskB7MgfN5LfGu/ZtFmzA2e71ZtNSQb0HhpXUtAmeNCVrm0VR5CjmLBVQgt
c25MSjtdXg81cC7tJ5eCT7pyuhQsoSeHE/JCeSLGWfHux7ODpKSARK3Sk1If
X2x7jgi+dA1k1bBAIgo8u7otJMGY5dwMBywpUsVEzEVtBStuZWbj9gqfizlB
Hpo1sxZxGEZBd5ElrP94ztJuw2C4qaUREaarsJozDrXxFYT8vYAgCUZGfs8H
dv+xtCwDGeYuIdmAMbyGULpsc1H1+sB+BotCtGNEuvOU9cGYScBZx+lnAtaX
asEyyb+uNgtGLpJrHdFq6sQXt+GQWXOjrdgMUrrHRkgqR//GgMHRc/YmEiqx
mmYw0MClcWA/7w34XeLKDvy+D9rpzfM334Z3dYEs6wFXKvWNcwH8qz99dspS
xwbjJfVCpWZb2Lvlc4F4X2h6LNJz/vYFF/8djw/Hs3jZJ+VOQuEgvUELN0j2
RHJI0WDdDdEd7euH1B2tiB/TfkyUA4g/jx9Rd7biFCW0f6k5LPuMykpefBSd
xRWkjx887t+vLxb9osZkrlgB2X0sdPeUNuMzoaU5VZQ609+BaJLrSJ8Gwz+I
OFP4/QTlLW/76FAo8hDfLykMsJK52yx52shqmoZZRLQ1nb9L1ETqsSqdbAs/
kSzOvVlfxyWiJACe5PJjsYMgz2W2/ZJxovMZjNrwJRl8K24Qk/UihNqBGyZ3
zMRJIU4zxFZuvy2KPw40IXCFQw03OENSzAaeTQ894vQvz154WShK17XX2w4S
6jRej7615p5ueMNwu7XkaNMqWcfzGa1L3YgYVKw/Ce+akAxaH1eDIqoDSNa9
KEiQ6fEIyGpBCZXvTvUgYTyV6Xx5I+c8v8b+uZ4Zv5BO+jfQq54fwL2/IRVn
fIL5+w099Tg89XjoqW+19vYN6MdOtWnzMxc2sVX9px78MH+sbDnmi2V7iW5s
QT6uGovXmHXKveJkjsNFAFEPTvGD/su+rS/DhF7rLZErSurOeWWF65iARCTA
q7G1Rq3RJis432PAd8JAtyzvw+GZzvhxrZ1WuyBAkXPNMqleUAAo7MuVXkrv
DCtqS5e/8LxhHxIvqIgNJR9NQ4YuZVRO29mdVBOwXyw7JGqGVGQ5MrTt2578
6IVHmnCCKYEeKOs6NuXUDm64ecMdM0A5EsZkEMPek+ggtnlju9ozfne7iXrh
9rEqYmnp40SCMfk+SG7BlWu/aiM2BZduFnrhsCShk2DSUm5aU/w4SBjnLWYS
Aydu0ATKIivfVw0edI87MumHBl/T37ir2WvSuXJFr7ZAYfKdCAw/fNbW7HzB
ZCK3BY00yZaV1tXK6uWKHWFrxYJLCYxSzBlc+ltY1qxHddqjIBtXM/tFhyav
NHWM40LmK43mEhUfdKDNzEIMAy3b/e0L3XOApAXvH8/QYt1PSOvYDhgl20nJ
RlM1MCiH2PdU4F3uDx8cbEIcmEZIKI+36QWm64vr7hNkvt/QsBrKm8myrDOx
rHA9Cdxp2/NxMRzrzCzaUpY7YGToXAo3rDx350PDoAyYkXqK6N/pMEiaL9Li
UKXptl5zaNipBXegVBum/8tCRfcc57BC4vdF9oPYTBdILSqhrw59ROpo5rTD
8CNYG9lwFIyaCmQkkXSifJTTF2UiETvBe76gcM0vwaacz+ugWiQUgQ/DLAFs
4lvT+lgxVzN6MOvWd8Kck/5ablboUyrzmDR2cLjAhnMQ0xrfwjTWRhlBqLmR
LUy7deMIJ7Zwl9xqOCoSXQESG89Aeud40FndztakusM1uz7x6JN2H+lJ3pqU
B0r1WUeZAjb6I+mREbSoRCni/fpuvWmdHR3IfBmHp4vKDIukbEi7dyFhp0Px
56EhwNJ9qek+OPWdBSnjIdnOKTQSl0JvCAdI7hH7LGJneevmKGL7ZB8zaxol
+bYsx9AiWDsv4Se2m6gLsTbCuq1ixuiwj0tr8bd73Tk+8PLk9UkWzFP/X0r7
45ltzFxBpeF3knmnqUIJrYQQZqJzUFjJjVztaP2bCMjfI8c7VZTJs6ynQtMV
HMtSfBrRhk/K1615n1DDbVfnz3KUggO+B730eDzGLsb7n2yuhL/gafho041f
V5sVlWjdlPsnT19/f1Ce3QUV/VEmRVmKrSXW53/f8e9dgwqrzS3ruUDaPENg
3xONdTthGSp1Q7HZHh0/eAhOBdpt9ED2vjk91mMdLH9aNLTXCyhm6Z39228/
P3g2efvi2fjjzXx8fHj45OjoOPjZ39ETqZ/fdUXHmZLhxRgalZFKTehP774f
PwmjeKEvhHQPB8hrF+CgvcbtBWV0Wiqu7JwGFRJRkLbIqi72wpE8NkHbK+L1
bAZiThgI+Pvu3NXKxeouFOjdX8+e/enkLf2r/LfyDx+PD8dfv8AXr/89/eKo
/Ir+82D86Cn+9eh5vNLuIbfYcjHszD1TintO/FJlKaKTLbSxoDFJ3adPih4U
oriZDPaP/E7p4/g3w4/k7/7JxwpjXv7YxBLPHpu5IdseO0iGQ+2BgnL57bdF
fRvL04UXTkaWfBxG5qrYg8z8cb88O80+O0h/h8/+rTz6o31C+yS9hj4J1+z9
shdW+PnLH16+C/89+fH0Tyc8AeBQ0BcPXgP+HrPCEPq2c3y2YwLgrsrZjWvt
FYWioZQl55vzEcDv5z85cD+Rj+jlWMJltIRNyZYJn/3u5Rnt6KgykrUb4BLK
m1PbewI0I695ZDLGIhZP3p6E+UP5d78Bj3LYcNKBeS9Qx5coMB4k3suJAb9n
Kgb4bNswxffr7jdtNPsy5Pybgt9q20Tj89L/H8uIm3Bc8os77Hrv5b4bekf/
23/R+xZb37e8x/v6AW97Xydd9p4oRht4vx3i9n90HaNQbpNLhMmGlHP84jNv
YiO0jaNDwC1U+fIf0KhfZQNxF5vGpX9EbVvan/Qae2PStXsT/O82vUvTmR9z
4aMdp9vObQ5jalj/sHrmEFP2RP/V9ifr9OVL6PV+76n4dGjh4hf3f6JuEraL
Flfj5MhJT9UyfhgGRf/Zsarx63/NqgbXh9I1vzT5TMcvfv88y2/HDc8yHqtH
CzIFg2ubfHf/h8pMy68x14tkuv3RgmuGBeCFRmlijNIPj7USk2nVtzGmk9Kp
JSO1xSeTSn8wjj+IA8Nn/+K9apGgOM1wdQBgyUJFDbAdbNyTZ6obdKyXhAc/
fPDHo+MnmwX5JyvioaSL4p/hCgzADag/1L3/voef8ZVk1D88Gj86gSn/+Gj8
9Qm+5d/Ttw8Oxw++ca9kEa+t7+RiYltfyq75v/tWBfHnKvpRawy++ji+vb0d
g0pvs5qrt/gqGEVV+Y5UxG9fuMvHg5eHs/MkrYbndFzqBcdceV2cf3YI5+UN
xgA1dZvQSBeuBfTRA05KRv/4en0zf3h4ND765ptvjo6Pg+ONAleOjcRSaW5y
hQjJq5evXrg31mjs6q7Y/49CJREGOGmqRTVpV1dfcVUlXOivMEhWsP+JoE5J
ozBQBDrvF8hqxSmOJFdmkRvFoSCj/9PZ+OTs2cuXRXTsuYBY8f0cgQjmxzrc
ELTCBC9hkBtgTVKtGXNN4XqMtqDRjspYGILkkusALjIQw28IHMQQA8cUGuvC
Jg794+NvqDaWAgffKVCKovUUkQs/o1gb9evl+OQCzUU6iWNr1+7+o4NZVy0B
1dvM60QIdq24gryDnsOd0MtW2KRkXnrTUvK0AJihU1PI1MQ3wU24CNPTkHzF
CTqbGJTNoDvx/K5QPDX6XXIHNGpJkMwJM1VMKQQyOPtRDsps9vOKY/oJjwYC
xRTPEl/pmo8aXSpddKnYPzoof/oPh4fHh+X+2enJsxcHo3L/WD57VO6fvnj7
7MXrd+XZyx9eH4yK/Qfy1eNy/+RV+PLs5PVz+slD+fxp+MmPP53Z9Y/485MH
4fM3P71+Ll9A+vYf05fHhyfPyv0XP719w98JfDOKI4EEOamTCROH0vZ5vq7D
NIQZbKhQUMNwB3LqhZcL7xLGHIb37LgMg3lxXD4J/3hWaIcsirv2AmIqMJWG
mv7DH44f/eH48R+On/7h2fEfTh784cXxH56EfzwjFXtGDI9z8QkIZNklHwRV
+VfqkLghqesIMNFtiScyLR//1uSB8kWylsrJHWP7mAlhXNcYqH7LwWYxKvgO
Xbw/P1Hu+J0i39XR0Xu4mh1A2KmAThA04NAsqQEyx+3AfDCf2yDzNin8Hb8/
p23/HYCQMwaEJJMY5hBokTGjRcbJoDlNa9BJm7A0tu4T7tsfxHtH2iQYpVTn
4ZJUJjCz7Jy7v9OjIqaMcLFyY64sJtoQh3v67DnM3Vd9FwVkvn/+08m7n3+Y
hLtRWHnH1BF8wmoipXk242l/ePHOUN68AhQPH7+QB+crwFy72cyfpu+/RnGA
zAKJLyLsZ1GGt8xe/yiSKRSaNwKvqNQnWOB/wUx+3rb5NEnf43MTe/rmLJ/Z
P5+9ed2b0V87iq1kM/ouk6pUB0AFVnw7BWjSmdtySxKWVyociBMNIgKXC2Qz
DR0YOv8LNGOYOF8kromIvltXryTDhGI8fFUXlMDmJoyYamE/84vF5mZKZk35
tG3ndVAQn7l+ypeFH7wR7FG2/9yfyMFZsxzBRk/rHPVW69RJB5nkuSD5lpHO
5W1GpTTFgopElwEjqZqUJ26mCSPP+Bm+hzwItN/4oFqtqju2AQXfw9lY1mVk
Q8fXMRvxBgUpVkT3oVqhMwbKThadnDgW/aDT5qlmmirDhhImYEz9PZjJYhbx
PF3OauXseGBFGeF5eBik7lvD03xoDTPI8Lj8i/iAcqhJCR0ILkOugKmdzI1M
fLhIkGAp+omsLqSudNTocvPtznY49AI7vo8ZxXz44YursFqxptp39I2turYn
ht04Hz8+jrP7kqopQaben+Dku3vMcdabpYvNX0rfmp0rvRKIXRzdk4dHD2l0
KSrxTBAP9boiUxvj3HlFuZ+C+DlT/5zI5agq9iC+g4Oz6DwaNAGUfe/LzVKA
JvEdePFZmlzj74RkLWnGFkm+1yjXiL5rXwRx1iVIm9hHzXiiXeMFP32Pj5/Q
9EUow3OmgUtn6wdgMHW1t19S7tMr11SpZ1O5jr/4Pmx9oIwrLx4MQZCOglw9
ExWm4ymbN0FZ4tRZUvs97aV758Qm24ATq/Sx9pda19/dUD+3d38VTu92ZU9G
jSrVk6Kek7ZXKza/thyj9e7Ic7qRr3EK8ic4mfAhrSMXAulcf334iOb61WZN
hfHvfjzDjMY/nXHstwpBlpuFNL4EZFQUUaxdCRbwLZPXdBuI2cj3z1Q0aF6c
aY8YgauORuCr8tOrk/f4mt7D4N0vWUG2qw4vdBqVEtW9KWxBoTWtVZ0R1QPV
0M53alZmAWvWgie0Pqf4QaJt12VjvbDCbMURf3P4GFKOc+7neir6av/PP787
oOFeNlIBFrfBCd/5HSN6WfJ7LlFUbEt3E1oEWizhEPF6C5VDQ4NgTeFGDDDF
t+XpBgfiYKOXzjbkzqsSRRzli3lfiAWKmkDH+vpKkXnAiEaidKrfInFZ1POR
65o7rdcMlZPSGDhhBEa6pGZEskFpVqabZi6hCDQq2tbwJ07BMYvZoN5+SYIe
/pP0GbT5OA9LcA/8o3HV8/nOqsqROe847SOi9ab5ON4sjdFPfXTtKK8v8+Ab
rOdbYlHYsZo7vjfDrpOeqPH9zpNB/iJ9485LpU/YSJvzi2Dj3VGxF1rswOlI
Xw9HobzCjrZM7r0ePoTp9by+YQQ6ZOhUWxyetp3Ss+w/P21PD9iiCf/aouuY
sCCFtMe9RBtTNhIprIp7KY7D/1/GBznFuch9MXEr3PC/PqThn63r5finZd4r
9JkFypXnFOP3V295DyHryewbZyhExVcloEMVOTcKQU4rF6FvRujVn3aUlLI0
9UmjqU50dGTbZ7f3LGlSP3lyYeQH+FhxbInykz40QNwl1Rs/h09ozX4gRjmO
qaEPm9a3svFEIXRjkXNhLSt/j/jJ5LmdN1bSnfI97QeMZz+sbUnx/YNRub2m
EFdRTaFdtbvCb5RAbrfVFLLXVM8aMFhw2JB7zYGLb/GeiVZA3L/40M4/uMge
RWPNzGujMyevDkCjULGsxbIhvbqWEpb0ocymnDw5nVdSfEGNb6g+R07pZkUK
sCLmxWCxToHFv2hXUmDbCTCfa+BYYImMr0aL1aWgazOu4OQVgjpfzFZNExRG
UD9X1Sg429PyT9XNdLO6GlExa9giz6qb5TTYLqPyedhN9bz8Phwy4Y+wE2lL
BuPmxU09DwrgLBiE16Py+2r+Pnz4fThsluXZ+/Z9tRiVfw7Tt7wu/1QHy5L+
3JBNAP1KxvVfqhXKoV/Vd0F//mMTVn5+XYW9GS59Fa6pwlP/HJaoi3+e1jQZ
b9tpMJHaoNnm82ZUvmtuyp//5/8IBrYQBv81+PNBItsgQeGyi4smLA25ERth
r69WKN4ciK+yc05rFn62WTkUfSabtL+66xYtto4Pj4/w3PCPY4+e7tyKt6ur
MI//IA0ka3Krt9j/YdPMWiJJDlP5jxGptmYRXJHXLRE00I3dEnCDeKrNVvqA
D6q3uPH9bHOB2uMWlMXBb1tFB0W4kVGIGux3KTRWuPCfGmI6uSuKv/0t2EVc
SsC1pWaBoEY5m7O//70oxkePSJ+j1XRk89AmPjTiYGFtsYCZMcU1ezJcNrOr
Hj+YNlSmyRuLmHsvgqPmNiTIxrhiN1zGX94J5Ck2e2pyHztWRPRct3Cb7g54
6Hm1uNpQBSOmQMrV8EInZ8wmYDUnack4zYY0TpFqYxpRONq78sGjQy4cePz4
6EG4DjTpNM1hBzZXG1hwLKGresmpIVevSpP9kCb7xZb5CF89Y22hxFDSsTfI
3Z42nQRf2l75oQOY05+Qe1ReOJtFUDiM/RRN+suSmehR8JF8EU6T5uJcYMs6
ZxRlQYXmcl7RpO51Fdm6/6j34vzyeQrdS3JN9KhK+wZZpbfi10ShDaUTYiF+
GWZthnfkOadqlSY4lw1z+MfmsY5WVe93Z2f+Srq4+NPYYkphuY2VXepK21Xa
uUVdwaR/EC3XA1qun6TSO51XOv1IpNwF2A8cLtDgHCufGJHbert5s3jPKQ+O
/0g4lQZx7Adh0y6CNtT5GKlHOBbhGXMEROfgscG0J5dqRieGS6RSR0gnuSgv
6C/dHky4Qtsn7HUhS2G5C4ODaUoXJDae0HiF4/KjNrHbPhkcPqwwiI6uC2PW
Wh/Ed4xeGuF51zyJoBy/dwfx7NHGeQV1mXdSN1lqJSalR76PB+GhRtkwE+i7
Kz2g1m1DqTnXUxKzQ4t9BAURXXyhJWdplvpstGBOZqjGJlXlq7xTiiAqheUe
SGONwgT5D8+QQBqHm/h7eh0mgxgoRM4K1aSK1qJkA3XKkQIFC/aU1EzPRtcc
uHTb5UgMhP+wGNjvkQJbwmHtsiJfnLMWmEALgRNrFUca/AHHZwyFpTrmjzZd
KmMPN3l5Q466JZvWwlErvw3qbD7zlQsmRLQB6o/LCtWbCjh3uBEOY67a2Ua6
lkg4OLhGYdnTWK3pAySLYoKHK3l0pG9ryu/Myunjh/wrEiz6x+MnvJ8YOhCm
+Y7Xm1T78YNH+ClI0maWF4fqb+ezuGefagz5c1m5vqZPCvjRbqAilva04Bvy
zrMlXZ+h2ZCe3l5W56tbdxRomjSHpXB9kPZoivaMJDT83SwU4JfNfDaB+W7f
Vh+8hZAmmaOB34LcuxxvKfUlF5grTQcjtmA1Crvm8BvaNeHgAwiI2pVoEeSz
N2/PIh1YlROFOTMKYSiOhWCHdHdBuYT9dTFsDIrhVT47e/u9134sTzYZT5+d
hivZ5pNo14fBMvw08Be3CB6i2/8mrGjXLtjysB3cgi8Dcp49t/LWERTTYE2v
oIJc4XlyZmaDUalZaZ2YCc7Am8sv3K2VkYRlf/ts9eyPk7dwwSk2dmDWs5nW
4fkg4fijuQJ+J0W/IKlPJFtdt+I2QiW1OzwEFE/50HDefECzBYl84o2YyiIk
HCAJmu+2WpZ7yNGq8SjHNNYR3yyoDyo4YOWrxnohBBMlKtjEYMUQ7wZjk6nA
6JM80fFesltT9WDLTWYqrSG8hSdH35g1ZAqUSPdFo34G1iCwL5qR75uPvTUP
40LRZbOINkM4p8KPV0vyFsMPKLS5d6psfBTnOznbS0XyLBWvMFfXKzIn/K5V
VFK7Jv54U4Nbdj6fe3rUpZHjpO6ZTzEtF3Y2VJxFCxA5eXkWpu39r0Fq2HOe
wSxNmhL1NA7yfuRYrvOISvb6PPZIuZS2PeDGuwOaeCvfWDzMt1yRbtSRHOW8
R6tytmEZqf3m+brAOvE1e5EIPuwBhkFOSTldrE30Xn1/kpCEA+RAuaxoAWFp
GxkTcsZx49K0iN15GtQMwRvBbHC3QyvS0XQNqYwbIFW2kTsRp9B1sNsRVPGF
0u4A6rsGRBr56uTUEZboNmFvSajcDEs4aypK49MMPqYZjFMYTdpaXag9uL50
1RnRRPCWd1YbeRDeadzDBO+xR7lnjbrC75P9uLaEimVM4v7QV6OBS86GbsCz
p3u2zc74SPetfA5vz/zLeb/FtyDwKZjOEyMQeu9BXFl1TrLG3/QImmz+Au0/
o3KiL38S6jXBdPV85aMj2tKmTztWtVmDgLgK8bqeGyKKAwRVfCnhjSiN1N+n
KgM2wNzX/LxS9hs0KAS+yYLAkWwXN2uhDXBUgkCiG/A8CCCibLYvdG2Nhrdc
pUxOjfImkS1Jv2Q1BWqTLboqNR0ypWNw2/C6wcFaoS1Ts5iTW6TIUBYiDXfO
JO7oTF1KcWv8gS9mcgL6vF2UKYdL/RFEtMwMKqSUX/XarWXr4s5XCwzZyZCY
RWFKH7opNSpW9ZfDPCohREL9r3lk0l+etaxzMudsqFQBuCa6fH3i9jvfxTg7
P3Tx7ekX20J/YW1W1H9YxUHZGeg9EYSi2QFLqLCaUIiYIztz/MCfpdYuizss
rNvlGJk7UbmsI4W6iG79VLLQ8D6jdOVt1aM88bsOyhTsLmrzTmwrSgRGV1vn
j1XNbSq2SKocubA+KgnIGaGAzEqCz1hu5nO0V9mxLTAXu0/sLXvEPx7jsZXJ
NT32pjbx3hgYD6FjEiWpmRnURNCSHwRJHi7s/llZOab/OaL/QeBEoAlzNs9h
TYCL43K+ubws/hdClx85cdoCAA==

-->

</rfc>
