<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.14 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-parecki-oauth-v2-1-01" category="std" consensus="true" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.40.1 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-parecki-oauth-v2-1-01"/>
    <author initials="D." surname="Hardt" fullname="Dick Hardt">
      <organization>SignIn.Org</organization>
      <address>
        <email>dick.hardt@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
      <organization>yes.com</organization>
      <address>
        <email>torsten@lodderstedt.net</email>
      </address>
    </author>
    <date year="2020" month="March" day="08"/>
    <area>Security</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The OAuth 2.1 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 2.0 Authorization
Framework described in RFC 6749.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>In the traditional client-server authentication model, the client
requests an access-restricted resource (protected resource) on the
server by authenticating with the server using the resource owner's
credentials.  In order to provide third-party applications access to
restricted resources, the resource owner shares its credentials with
the third party.  This creates several problems and limitations:</t>
      <ul spacing="normal">
        <li>Third-party applications are required to store the resource
owner's credentials for future use, typically a password in
clear-text.</li>
        <li>Servers are required to support password authentication, despite
the security weaknesses inherent in passwords.</li>
        <li>Third-party applications gain overly broad access to the resource
owner's protected resources, leaving resource owners without any
ability to restrict duration or access to a limited subset of
resources.</li>
        <li>Resource owners cannot revoke access to an individual third party
without revoking access to all third parties, and must do so by
changing the third party's password.</li>
        <li>Compromise of any third-party application results in compromise of
the end-user's password and all of the data protected by that
password.</li>
      </ul>
      <t>OAuth addresses these issues by introducing an authorization layer
and separating the role of the client from that of the resource
owner.  In OAuth, the client requests access to resources controlled
by the resource owner and hosted by the resource server, and is
issued a different set of credentials than those of the resource
owner.</t>
      <t>Instead of using the resource owner's credentials to access protected
resources, the client obtains an access token - a string denoting a
specific scope, lifetime, and other access attributes.  Access tokens
are issued to third-party clients by an authorization server with the
approval of the resource owner.  The client uses the access token to
access the protected resources hosted by the resource server.</t>
      <t>For example, an end-user (resource owner) can grant a printing
service (client) access to her protected photos stored at a photo-
sharing service (resource server), without sharing her username and
password with the printing service.  Instead, she authenticates
directly with a server trusted by the photo-sharing service
(authorization server), which issues the printing service delegation-
specific credentials (access token).</t>
      <t>This specification is designed for use with HTTP (<xref target="RFC2616" format="default"/>).  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" format="default"/>)
in October 2012, it has been updated by OAuth 2.0 for Native Apps (<xref target="RFC8252" format="default"/>),
OAuth Security Best Current Practice (<xref target="I-D.ietf-oauth-security-topics" format="default"/>),
and OAuth 2.0 for Browser-Based Apps (<xref target="I-D.ietf-oauth-browser-based-apps" format="default"/>).
The OAuth 2.0 Authorization Framework: Bearer Token Usage (<xref target="RFC6750" format="default"/>)
has also been updated with (<xref target="I-D.ietf-oauth-security-topics" format="default"/>). This
Standards Track specification consolidates the information in all of these
documents and removes features that have been found to be insecure
in <xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
      <section anchor="roles" numbered="true" toc="default">
        <name>Roles</name>
        <t>OAuth defines four roles:</t>
        <dl newline="false" spacing="normal">
          <dt>"resource owner":</dt>
          <dd>
  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".</dd>
          <dt>"resource server":</dt>
          <dd>
  The server hosting the protected resources, capable of accepting
and responding to protected resource requests using access tokens.
This is sometimes abbreviated as "RS".</dd>
          <dt>"client":</dt>
          <dd>
  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).</dd>
          <dt>"authorization server":</dt>
          <dd>
  The server issuing access tokens to the client after successfully
authenticating the resource owner and obtaining authorization.
This is sometimes abbreviated as "AS".</dd>
        </dl>
        <t>The interaction between the authorization server and resource server
is beyond the scope of this specification.  The authorization server
may be the same server as the resource server or a separate entity.
A single authorization server may issue access tokens accepted by
multiple resource servers.</t>
      </section>
      <section anchor="protocol-flow" numbered="true" toc="default">
        <name>Protocol Flow</name>
        <figure anchor="fig-protocol-flow">
          <name>Abstract Protocol Flow</name>
          <artwork name="" type="" align="left" alt=""><![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" format="default"/> describes the
interaction between the four roles and includes the following steps:</t>
        <ol spacing="normal" type="1">
          <li>The client requests authorization from the resource owner.  The
authorization request can be made directly to the resource owner
(as shown), or preferably indirectly via the authorization
server as an intermediary.</li>
          <li>The client receives an authorization grant, which is a
credential representing the resource owner's authorization,
expressed using one of two grant types defined in this
specification or using an extension grant type.  The
authorization grant type depends on the method used by the
client to request authorization and the types supported by the
authorization server.</li>
          <li>The client requests an access token by authenticating with the
authorization server and presenting the authorization grant.</li>
          <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token.</li>
          <li>The client requests the protected resource from the resource
server and authenticates by presenting the access token.</li>
          <li>The resource server validates the access token, and if valid,
serves the request.</li>
        </ol>
        <t>The preferred method for the client to obtain an authorization grant
from the resource owner (depicted in steps (1) and (2)) is to use the
authorization server as an intermediary, which is illustrated in
<xref target="fig-authorization-code-flow" format="default"/> in <xref target="authorization-code-grant" format="default"/>.</t>
      </section>
      <section anchor="authorization-grant" numbered="true" toc="default">
        <name>Authorization Grant</name>
        <t>An authorization grant is a credential representing the resource
owner's authorization (to access its protected resources) used by the
client to obtain an access token.  This specification defines two
grant types - authorization code
and client credentials - as well as an extensibility
mechanism for defining additional types.</t>
        <section anchor="authorization-code" numbered="true" toc="default">
          <name>Authorization Code</name>
          <t>The authorization code is obtained by using an authorization server
as an intermediary between the client and resource owner.  Instead of
requesting authorization directly from the resource owner, the client
directs the resource owner to an authorization server (via its
user-agent as defined in <xref target="RFC2616" format="default"/>), which in turn directs the
resource owner back to the client with the authorization code.</t>
          <t>Before directing the resource owner back to the client with the
authorization code, the authorization server authenticates the
resource owner and obtains authorization.  Because the resource owner
only authenticates with the authorization server, the resource
owner's credentials are never shared with the client.</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="client-credentials" numbered="true" toc="default">
          <name>Client Credentials</name>
          <t>The client credentials (or other forms of client authentication) 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 as an authorization grant
typically when the client is acting on its own behalf (the client is
also the resource owner) or is requesting access to protected
resources based on an authorization previously arranged with the
authorization server.</t>
        </section>
      </section>
      <section anchor="access-token" numbered="true" toc="default">
        <name>Access Token</name>
        <t>Access tokens are credentials used to access protected resources.  An
access token is a string representing an authorization issued to the
client.  The string is usually opaque to the client.  Tokens
represent specific scopes and durations of access, granted by the
resource owner, and enforced by the resource server and authorization
server.</t>
        <t>The token may denote an identifier used to retrieve the authorization
information or may self-contain the authorization information in a
verifiable manner (i.e., a token string consisting of some data and a
signature).  Additional authentication credentials, which are beyond
the scope of this specification, may be required in order for the
client to use a token.</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>
      </section>
      <section anchor="refresh-token" numbered="true" toc="default">
        <name>Refresh Token</name>
        <t>Refresh tokens are credentials used to obtain access tokens.  Refresh
tokens are issued to the client by the authorization server and are
used to obtain a new access token when the current access token
becomes invalid or expires, or to obtain additional access tokens
with identical or narrower scope (access tokens may have a shorter
lifetime and fewer permissions than authorized by the resource
owner).  Issuing a refresh token is optional at the discretion of the
authorization server.  If the authorization server issues a refresh
token, it is included when issuing an access token (i.e., step (4) in
<xref target="fig-refresh-token-flow" format="default"/>).</t>
        <t>A refresh token is a string representing the authorization granted to
the client by the resource owner.  The string is usually opaque to
the client.  The token denotes an identifier used to retrieve the
authorization information.  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 name="" type="" align="left" alt=""><![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" format="default"/> includes the following steps:</t>
        <ol spacing="normal" type="1">
          <li>The client requests an access token by authenticating with the
authorization server and presenting an authorization grant.</li>
          <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token
and a refresh token.</li>
          <li>The client makes a protected resource request to the resource
server by presenting the access token.</li>
          <li>The resource server validates the access token, and if valid,
serves the request.</li>
          <li>Steps (3) and (4) repeat until the access token expires.  If the
client knows the access token expired, it skips to step (7);
otherwise, it makes another protected resource request.</li>
          <li>Since the access token is invalid, the resource server returns
an invalid token error.</li>
          <li>The client requests a new access token by authenticating with
the authorization server and presenting the refresh token.  The
client authentication requirements are based on the client type
and on the authorization server policies.</li>
          <li>The authorization server authenticates the client and validates
the refresh token, and if valid, issues a new access token (and,
optionally, a new refresh token).</li>
        </ol>
        <t>Steps (3), (4), (5), and (6) are outside the scope of this
specification, as described in <xref target="accessing-protected-resources" format="default"/>.</t>
      </section>
      <section anchor="tls-version" numbered="true" toc="default">
        <name>TLS Version</name>
        <t>Whenever Transport Layer Security (TLS) is used by this
specification, the appropriate version (or versions) of TLS will vary
over time, based on the widespread deployment and known security
vulnerabilities.  At the time of this writing, At the time of this writing,
TLS version 1.3 <xref target="RFC8446" format="default"/> is the most recent version.</t>
        <t>Implementations MAY also support additional transport-layer security
mechanisms that meet their security requirements.</t>
      </section>
      <section anchor="http-redirections" numbered="true" toc="default">
        <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 is
allowed and is considered to be an implementation detail.</t>
      </section>
      <section anchor="interoperability" numbered="true" toc="default">
        <name>Interoperability</name>
        <t>OAuth 2.1 provides a rich authorization framework with well-defined
security properties.  However, as a rich and highly extensible
framework with many optional components, on its own, this
specification is likely to produce a wide range of non-interoperable
implementations.</t>
        <t>In addition, this specification leaves a few required components
partially or fully undefined (e.g., client registration,
authorization server capabilities, endpoint discovery).  Without
these components, clients must be manually and specifically
configured against a specific authorization server and resource
server in order to interoperate.</t>
        <t>This framework was designed with the clear expectation that future
work will define prescriptive profiles and extensions necessary to
achieve full web-scale interoperability.</t>
      </section>
      <section anchor="notational-conventions" numbered="true" toc="default">
        <name>Notational Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
specification are to be interpreted as described in <xref target="RFC2119" format="default"/>.</t>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF)
notation of <xref target="RFC5234" format="default"/>.  Additionally, the rule URI-reference is
included from "Uniform Resource Identifier (URI): Generic Syntax"
<xref target="RFC3986" format="default"/>.</t>
        <t>Certain security-related terms are to be understood in the sense
defined in <xref target="RFC4949" format="default"/>.  These terms include, but are not limited to,
"attack", "authentication", "authorization", "certificate",
"confidentiality", "credential", "encryption", "identity", "sign",
"signature", "trust", "validate", and "verify".</t>
        <t>Unless otherwise noted, all the protocol parameter names and values
are case sensitive.</t>
      </section>
    </section>
    <section anchor="client-registration" numbered="true" toc="default">
      <name>Client Registration</name>
      <t>Before initiating the protocol, the client registers with the
authorization server.  The means through which the client registers
with the authorization server are beyond the scope of this
specification but typically involve end-user interaction with an HTML
registration form.</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., redirection URI, client type).  For example, registration can
be accomplished using a self-issued or third-party-issued assertion,
or by the authorization server performing client discovery using a
trusted channel.</t>
      <t>When registering a client, the client developer SHALL:</t>
      <ul spacing="normal">
        <li>specify the client type as described in <xref target="client-types" format="default"/>,</li>
        <li>provide its client redirection URIs as described in <xref target="redirection-endpoint" format="default"/>,
and</li>
        <li>include any other information required by the authorization server
(e.g., application name, website, description, logo image, the
acceptance of legal terms).</li>
      </ul>
      <section anchor="client-types" numbered="true" toc="default">
        <name>Client Types</name>
        <t>Clients are identified at the authorization server by a <tt>client_id</tt>.
It is, for example, used by the authorization server to determine the set of
redirect URIs this client can use.</t>
        <t>Clients requiring a higher level of confidence in their identity by the
authorization server use credentials to authenticate with the authorization server.
Such credentials are either issued by the authorization server or registered
by the developer of the client with the authorization server.</t>
        <t>OAuth 2.1 defines two client types:</t>
        <dl newline="false" spacing="normal">
          <dt>"confidential":</dt>
          <dd>
  Clients that have credentials are designated as "confidential clients"</dd>
          <dt>"public":</dt>
          <dd>
  Clients without credentials are called "public clients"</dd>
        </dl>
        <t>Confidential clients MUST take precautions to prevent leakage and abuse of their credentials.</t>
        <t>Authorization servers SHOULD consider the level of confidence in a client's identity
when deciding whether they allow such a client access to more critical functions,
such as the client credentials grant type.</t>
        <t>A client may be implemented as a distributed set of components, each
with a different client type and security context (e.g., a
distributed client with both a confidential server-based component
and a public browser-based component).  If the authorization server
does not provide support for such clients or does not provide
guidance with regard to their registration, the client SHOULD
register each component as a separate client.</t>
        <t>This specification has been designed around the following client
profiles:</t>
        <dl newline="false" spacing="normal">
          <dt>"web application":</dt>
          <dd>
  A web application is a confidential 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
token issued to the client are stored on the web server and are
not exposed to or accessible by the resource owner.</dd>
          <dt>"browser-based application":</dt>
          <dd>
  A browser-based application is a public 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.  Since such applications
reside within the user-agent, they can make seamless use of the
user-agent capabilities when requesting authorization.</dd>
          <dt>"native application":</dt>
          <dd>
  A native application is a public 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.  On the other hand, dynamically
issued credentials such as access tokens or refresh tokens can
receive an acceptable level of protection.  At a minimum, these
credentials are protected from hostile servers with which the
application may interact.  On some platforms, these credentials
might be protected from other applications residing on the same
device.</dd>
        </dl>
      </section>
      <section anchor="client-identifier" numbered="true" toc="default">
        <name>Client Identifier</name>
        <t>The authorization server issues the registered client a client
identifier - a unique string representing the registration
information provided by the client.  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 to
the authorization server.</t>
        <t>The client identifier string size is left undefined by this
specification.  The client should avoid making assumptions about the
identifier size.  The authorization server SHOULD document the size
of any identifier it issues.</t>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner.</t>
      </section>
      <section anchor="client-authentication" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>If the client type is confidential, the client and authorization
server establish a client authentication method suitable for the
security requirements of the authorization server.  The authorization
server MAY accept any form of client authentication meeting its
security requirements.</t>
        <t>Confidential clients are typically issued (or establish) a set of
client credentials used for authenticating with the authorization
server (e.g., password, public/private key pair).</t>
        <t>Authorization servers SHOULD use client authentication if possible.</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705" format="default"/> or "private_key_jwt"
<xref target="OpenID" format="default"/>.  When asymmetric methods for client authentication are
used, authorization servers do not need to store sensitive symmetric
keys, making these methods more robust against a number of attacks.</t>
        <t>The authorization server MAY establish a client authentication method
with public clients.  However, the authorization server MUST NOT rely
on public client authentication for the purpose of identifying the
client.</t>
        <t>The client MUST NOT use more than one authentication method in each
request.</t>
        <section anchor="client-password" numbered="true" toc="default">
          <name>Client Password</name>
          <t>Clients in possession of a client password MAY use the HTTP Basic
authentication scheme as defined in <xref target="RFC2617" format="default"/> to authenticate with
the authorization server.  The client identifier is encoded using the
"application/x-www-form-urlencoded" encoding algorithm per
Appendix B, and the encoded value is used as the username; the client
password is encoded using the same algorithm and used as the
password.  The authorization server MUST support the HTTP Basic
authentication scheme for authenticating clients that were issued a
client password.</t>
          <t>For example (with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Authorization: Basic czZCaGRSa3F0Mzo3RmpmcDBaQnIxS3REUmJuZlZkbUl3
]]></artwork>
          <t>Alternatively, the authorization server MAY support including the
client credentials in the request-body using the following
parameters:</t>
          <dl newline="false" spacing="normal">
            <dt>"client_id":</dt>
            <dd>
  REQUIRED.  The client identifier issued to the client during
the registration process described by <xref target="client-identifier" format="default"/>.</dd>
            <dt>"client_secret":</dt>
            <dd>
  REQUIRED.  The client secret.  The client MAY omit the
parameter if the client secret is an empty string.</dd>
          </dl>
          <t>Including the client credentials in the request-body using the two
parameters is NOT RECOMMENDED and SHOULD be limited to clients unable
to directly utilize the HTTP Basic authentication scheme (or other
password-based HTTP authentication schemes).  The parameters can only
be transmitted in the request-body and MUST NOT be included in the
request URI.</t>
          <t>For example, a request to refresh an access token (<xref target="refreshing-an-access-token" format="default"/>) using
the body parameters (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![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 MUST require the use of TLS as described in
<xref target="tls-version" format="default"/> when sending requests using password authentication.</t>
          <t>Since this client authentication method involves a password, the
authorization server MUST protect any endpoint utilizing it against
brute force attacks.</t>
        </section>
        <section anchor="other-authorization-methods" numbered="true" toc="default">
          <name>Other Authorization Methods</name>
          <t>The authorization server MAY support any suitable HTTP 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>
        </section>
      </section>
      <section anchor="unregistered-clients" numbered="true" toc="default">
        <name>Unregistered Clients</name>
        <t>This specification does not exclude the use of unregistered clients.
However, the use of such 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" numbered="true" toc="default">
      <name>Protocol Endpoints</name>
      <t>The authorization process utilizes two authorization server endpoints
(HTTP resources):</t>
      <ul spacing="normal">
        <li>Authorization endpoint - used by the client to obtain
authorization from the resource owner via user-agent redirection.</li>
        <li>Token endpoint - used by the client to exchange an authorization
grant for an access token, typically with client authentication.</li>
      </ul>
      <t>As well as one client endpoint:</t>
      <ul spacing="normal">
        <li>Redirection endpoint - used by the authorization server to return
responses containing authorization credentials to the client via
the resource owner user-agent.</li>
      </ul>
      <t>Not every authorization grant type utilizes both endpoints.
Extension grant types MAY define additional endpoints as needed.</t>
      <section anchor="authorization-endpoint" numbered="true" toc="default">
        <name>Authorization Endpoint</name>
        <t>The authorization endpoint is used to interact with the resource
owner and obtain an authorization grant.  The authorization server
MUST first verify the identity of the resource owner.  The way in
which the authorization server authenticates the resource owner
(e.g., username and password login, session cookies) is beyond the
scope of this specification.</t>
        <t>The means through which the client obtains the location of the
authorization endpoint are beyond the scope of this specification,
but the location is typically provided in the service documentation.</t>
        <t>The endpoint URI MAY include an "application/x-www-form-urlencoded"
formatted (per Appendix B) query component (<xref target="RFC3986" format="default"/> Section 3.4),
which MUST be retained when adding additional query parameters.  The
endpoint URI MUST NOT include a fragment component.</t>
        <t>Since requests to the authorization endpoint result in user
authentication and the transmission of clear-text credentials (in the
HTTP response), the authorization server MUST require the use of TLS
as described in <xref target="tls-version" format="default"/> when sending requests to the
authorization endpoint.</t>
        <t>The authorization server MUST support the use of the HTTP <tt>GET</tt>
method <xref target="RFC2616" format="default"/> for the authorization endpoint and MAY support the
use of the <tt>POST</tt> method as well.</t>
        <t>Parameters sent without a value MUST be treated as if they were
omitted from the request.  The authorization server MUST ignore
unrecognized request parameters.  Request and response parameters
MUST NOT be included more than once.</t>
        <section anchor="response-type" numbered="true" toc="default">
          <name>Response Type</name>
          <t>The authorization endpoint is used by the authorization code flow.
The client informs the authorization server of the desired response type
using the following parameter:</t>
          <dl newline="false" spacing="normal">
            <dt>"response_type":</dt>
            <dd>
  REQUIRED.  The value MUST be <tt>code</tt> for requesting an authorization
code as described by <xref target="authorization-request" format="default"/>, or a registered extension
value as described by <xref target="new-response-types" format="default"/>.</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>If an authorization request is missing the "response_type" 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" format="default"/>.</t>
        </section>
        <section anchor="redirection-endpoint" numbered="true" toc="default">
          <name>Redirection Endpoint</name>
          <t>After completing its interaction with the resource owner, the
authorization server directs the resource owner's user-agent back to
the client.  The authorization server redirects the user-agent to the
client's redirection endpoint previously established with the
authorization server during the client registration process.</t>
          <t>The authorization server MUST compare the two URIs using simple string
comparison as defined in <xref target="RFC3986" format="default"/>, Section 6.2.1.</t>
          <t>The redirection endpoint URI MUST be an absolute URI as defined by
<xref target="RFC3986" format="default"/> Section 4.3.  The endpoint URI MAY include an
"application/x-www-form-urlencoded" formatted (per Appendix B) query
component (<xref target="RFC3986" format="default"/> Section 3.4), which MUST be retained when adding
additional query parameters.  The endpoint URI MUST NOT include a
fragment component.</t>
          <section anchor="endpoint-request-confidentiality" numbered="true" toc="default">
            <name>Endpoint Request Confidentiality</name>
            <t>The redirection endpoint SHOULD require the use of TLS as described
in <xref target="tls-version" format="default"/> when the requested response type is <tt>code</tt>,
or when the redirection request will result in the transmission of
sensitive credentials over an open network.  This specification does
not mandate the use of TLS because at the time of this writing,
requiring clients to deploy TLS is a significant hurdle for many
client developers.  If TLS is not available, the authorization server
SHOULD warn the resource owner about the insecure endpoint prior to
redirection (e.g., display a message during the authorization
request).</t>
            <t>Lack of transport-layer security can have a severe impact on the
security of the client and the protected resources it is authorized
to access.  The use of transport-layer security is particularly
critical when the authorization process is used as a form of
delegated end-user authentication by the client (e.g., third-party
sign-in service).</t>
          </section>
          <section anchor="registration-requirements" numbered="true" toc="default">
            <name>Registration Requirements</name>
            <t>The authorization server MUST require all clients to register their
redirection endpoint prior to utilizing the authorization endpoint.</t>
            <t>The authorization server SHOULD require the client to provide the
complete redirection URI (the client MAY use the <tt>state</tt> request
parameter to achieve per-request customization).</t>
            <t>The authorization server MAY allow the client to register multiple
redirection endpoints.</t>
            <t>Lack of a redirection URI registration requirement can enable an
attacker to use the authorization endpoint as an open redirector as
described in <xref target="open-redirectors" format="default"/>.</t>
          </section>
          <section anchor="dynamic-configuration" numbered="true" toc="default">
            <name>Dynamic Configuration</name>
            <t>If multiple redirection URIs have been registered the client MUST
include a redirection URI with the authorization request using the
<tt>redirect_uri</tt> request parameter.</t>
            <t>When a redirection URI is included in an authorization request, the
authorization server MUST compare and match the value received
against at least one of the registered redirection URIs (or URI
components) as defined in <xref target="RFC3986" format="default"/> Section 6, if any redirection
URIs were registered.  If the client registration included the full
redirection URI, the authorization server MUST compare the two URIs
using simple string comparison as defined in <xref target="RFC3986" format="default"/> Section 6.2.1.</t>
          </section>
          <section anchor="invalid-endpoint" numbered="true" toc="default">
            <name>Invalid Endpoint</name>
            <t>If an authorization request fails validation due to a missing,
invalid, or mismatching redirection URI, the authorization server
SHOULD inform the resource owner of the error and MUST NOT
automatically redirect the user-agent to the invalid redirection URI.</t>
          </section>
          <section anchor="endpoint-content" numbered="true" toc="default">
            <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 redirection URI and the credentials it contains.</t>
            <t>The client SHOULD NOT include any third-party scripts (e.g., third-
party analytics, social plug-ins, ad networks) in the redirection
endpoint response.  Instead, it SHOULD extract the credentials from
the URI and redirect the user-agent again to another endpoint without
exposing the credentials (in the URI or elsewhere).  If third-party
scripts are included, the client MUST ensure that its own scripts
(used to extract and remove the credentials from the URI) will
execute first.</t>
          </section>
        </section>
      </section>
      <section anchor="token-endpoint" numbered="true" toc="default">
        <name>Token Endpoint</name>
        <t>The token endpoint is used by the client to obtain an access token by
presenting its authorization grant or refresh token.</t>
        <t>The means through which the client obtains the location of the token
endpoint are beyond the scope of this specification, but the location
is typically provided in the service documentation.</t>
        <t>The endpoint URI MAY include an <tt>application/x-www-form-urlencoded</tt>
formatted (per Appendix B) query component (<xref target="RFC3986" format="default"/> Section 3.4),
which MUST be retained when adding additional query parameters.  The
endpoint URI MUST NOT include a fragment component.</t>
        <t>Since requests to the token endpoint result in the transmission of
clear-text credentials (in the HTTP request and response), the
authorization server MUST require the use of TLS as described in
<xref target="tls-version" format="default"/> when sending requests to the token endpoint.</t>
        <t>The client MUST use the HTTP <tt>POST</tt> method when making access token
requests.</t>
        <t>Parameters sent without a value MUST be treated as if they were
omitted from the request.  The authorization server MUST ignore
unrecognized request parameters.  Request and response parameters
MUST NOT be included more than once.</t>
        <section anchor="token-endpoint-client-authentication" numbered="true" toc="default">
          <name>Client Authentication</name>
          <t>Confidential clients or other clients issued client credentials MUST
authenticate with the authorization server as described in
<xref target="client-authentication" format="default"/> when making requests to the token endpoint.  Client
authentication is used for:</t>
          <ul spacing="normal">
            <li>Enforcing the binding of refresh tokens and authorization codes to
the client they were issued to.  Client authentication is critical
when an authorization code is transmitted to the redirection
endpoint over an insecure channel or when the redirection URI has
not been registered in full.</li>
            <li>Recovering from a compromised client by disabling the client or
changing its credentials, thus preventing an attacker from abusing
stolen refresh tokens.  Changing a single set of client
credentials is significantly faster than revoking an entire set of
refresh tokens.</li>
            <li>Implementing authentication management best practices, which
require periodic credential rotation.  Rotation of an entire set
of refresh tokens can be challenging, while rotation of a single
set of client credentials is significantly easier.</li>
          </ul>
          <t>A client MAY use the <tt>client_id</tt> request parameter to identify itself
when sending requests to the token endpoint.  In the
<tt>authorization_code</tt> <tt>grant_type</tt> request to the token endpoint, an
unauthenticated client MUST send its <tt>client_id</tt> to prevent itself
from inadvertently accepting a code intended for a client with a
different <tt>client_id</tt>.  This protects the client from substitution of
the authentication code.  (It provides no additional security for the
protected resource.)</t>
        </section>
      </section>
      <section anchor="access-token-scope" numbered="true" toc="default">
        <name>Access Token Scope</name>
        <t>The authorization and token endpoints allow the client to specify the
scope of the access request using the <tt>scope</tt> request parameter.  In
turn, the authorization server uses the <tt>scope</tt> response parameter to
inform the client of the scope of the access token issued.</t>
        <t>The value of the scope parameter is expressed as a list of space-
delimited, case-sensitive strings.  The strings are defined by the
authorization server.  If the value contains multiple space-delimited
strings, their order does not matter, and each string adds an
additional access range to the requested scope.</t>
        <artwork type="abnf" name="" align="left" alt=""><![CDATA[
    scope       = scope-token *( SP scope-token )
    scope-token = 1*( %x21 / %x23-5B / %x5D-7E )
]]></artwork>
        <t>The authorization server MAY fully or partially ignore the scope
requested by the client, based on the authorization server policy or
the resource owner's instructions.  If the issued access token scope
is different from the one requested by the client, the authorization
server MUST include the <tt>scope</tt> response parameter to inform the
client of the actual scope granted.</t>
        <t>If the client omits the scope parameter when requesting
authorization, the authorization server MUST either process the
request using a pre-defined default value or fail the request
indicating an invalid scope.  The authorization server SHOULD
document its scope requirements and default value (if defined).</t>
      </section>
    </section>
    <section anchor="obtaining-authorization" numbered="true" toc="default">
      <name>Obtaining Authorization</name>
      <t>To request an access token, the client obtains authorization from the
resource owner.  The authorization is expressed in the form of an
authorization grant, which the client uses to request the access
token.  OAuth defines two grant types: authorization code
and client credentials.  It also
provides an extension mechanism for defining additional grant types.</t>
      <section anchor="authorization-code-grant" numbered="true" toc="default">
        <name>Authorization Code Grant</name>
        <t>The authorization code grant type is used to obtain both access
tokens and refresh tokens.</t>
        <t>Since this is a redirection-based flow, the client must be capable of
interacting with the resource owner's user-agent (typically a web
browser) and capable of receiving incoming requests (via redirection)
from the authorization server.</t>
        <figure anchor="fig-authorization-code-flow">
          <name>Authorization Code Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
+----------+
| Resource |
|   Owner  |
|          |
+----------+
     ^
     |
    (2)
+----|-----+          Client Identifier      +---------------+
|         -+----(1)-- & Redirection URI ---->|               |
|  User-   |                                 | Authorization |
|  Agent  -+----(2)-- User authenticates --->|     Server    |
|          |                                 |               |
|         -+----(3)-- Authorization Code ---<|               |
+-|----|---+                                 +---------------+
  |    |                                         ^      v
 (1)  (3)                                        |      |
  |    |                                         |      |
  ^    v                                         |      |
+---------+                                      |      |
|         |>---(4)-- Authorization Code ---------'      |
|  Client |          & Redirection URI                  |
|         |                                             |
|         |<---(5)----- Access Token -------------------'
+---------+       (w/ Optional Refresh Token)

Note: The lines illustrating steps (1), (2), and (3) are broken into
two parts as they pass through the user-agent.
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-authorization-code-flow" format="default"/> 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, requested scope, local state, PKCE code challenge, and a
     redirection 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
     redirection URI provided earlier (in the request or during
     client registration).  The redirection 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 redirection 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 redirection URI
     received matches the URI used to redirect the client in
     step (C).  If valid, the authorization server responds back with
     an access token and, optionally, a refresh token.</t>
        <section anchor="authorization-request" numbered="true" toc="default">
          <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.</t>
          <t>Clients use a unique secret per authorization request to protect against code
injection and CSRF attacks. The client first generates this secret, which it can
later use along with the authorization code to prove that the application using the
authorization code is the same application that requested it. This practice is known
as "Proof-Key for Code Exchange", or PKCE, after the OAuth 2.0 extension (<xref target="RFC7636" format="default"/>)
where it was originally developed.</t>
          <section anchor="client-creates-a-pkce-code-verifier" numbered="true" toc="default">
            <name>Client Creates a PKCE Code Verifier</name>
            <t>The client first creates a PKCE code verifier, <tt>code_verifier</tt>, for each
Authorization Request, in the following manner:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
code_verifier = high-entropy cryptographic random STRING using the
unreserved characters `[A-Z] / [a-z] / [0-9] / "-" / "." / "_" / "~"`
from Section 2.3 of {{RFC3986}}, with a minimum length of 43 characters
and a maximum length of 128 characters.
]]></artwork>
            <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
            <t>NOTE: The code verifier SHOULD have enough entropy to make it
impractical to guess the value.  It is RECOMMENDED that the output of
a suitable random number generator be used to create a 32-octet
sequence.  The octet sequence is then base64url-encoded to produce a
43-octet URL-safe string to use as the code verifier.</t>
          </section>
          <section anchor="client-creates-the-pkce-code-challenge" numbered="true" toc="default">
            <name>Client Creates the PKCE Code Challenge</name>
            <t>The client then creates a PKCE code challenge derived from the code
verifier by using one of the following transformations on the code
verifier:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
plain
  code_challenge = code_verifier

S256
  code_challenge = BASE64URL-ENCODE(SHA256(ASCII(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 and know via out-of-band configuration that the
server supports <tt>plain</tt>.</t>
            <t>The plain transformation is for compatibility with existing
deployments and for constrained environments that can't use the S256
transformation.</t>
            <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          </section>
          <section anchor="client-initiates-the-authorization-request" numbered="true" toc="default">
            <name>Client Initiates the Authorization Request</name>
            <t>The client constructs the request URI by adding the following
parameters to the query component of the authorization endpoint URI
using the <tt>application/x-www-form-urlencoded</tt> format, per Appendix B:</t>
            <dl newline="false" spacing="normal">
              <dt>"response_type":</dt>
              <dd>
  REQUIRED.  Value MUST be set to <tt>code</tt>.</dd>
              <dt>"client_id":</dt>
              <dd>
  REQUIRED.  The client identifier as described in <xref target="client-identifier" format="default"/>.</dd>
              <dt>"code_challenge":</dt>
              <dd>
  REQUIRED.  Code challenge.</dd>
              <dt>"code_challenge_method":</dt>
              <dd>
  OPTIONAL, defaults to <tt>plain</tt> if not present in the request.  Code
    verifier transformation method is <tt>S256</tt> or <tt>plain</tt>.</dd>
              <dt>"redirect_uri":</dt>
              <dd>
  OPTIONAL.  As described in <xref target="redirection-endpoint" format="default"/>.</dd>
              <dt>"scope":</dt>
              <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.</dd>
              <dt>"state":</dt>
              <dd>
  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.</dd>
            </dl>
            <t>The client directs the resource owner to the constructed URI using an
HTTP redirection response, or by other means available to it via the
user-agent.</t>
            <t>For example, the client directs the user-agent to make the following
HTTP request using TLS (with extra line breaks for display purposes
only):</t>
            <artwork name="" type="" align="left" alt=""><![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.  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 redirection URI using an HTTP
redirection response, or by other means available to it via the
user-agent.</t>
          </section>
        </section>
        <section anchor="authorization-response" numbered="true" toc="default">
          <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
redirection URI using the <tt>application/x-www-form-urlencoded</tt> format,
per Appendix B:</t>
          <dl newline="false" spacing="normal">
            <dt>"code":</dt>
            <dd>
  REQUIRED.  The authorization code generated by the
authorization server.  The authorization code MUST expire
shortly after it is issued to mitigate the risk of leaks.  A
maximum authorization code lifetime of 10 minutes is
RECOMMENDED.  The client MUST NOT use the authorization code
more than once.  If an authorization code is used more than
once, the authorization server MUST deny the request and SHOULD
revoke (when possible) all tokens previously issued based on
that authorization code.  The authorization code is bound to
the client identifier and redirection URI.</dd>
            <dt>"state":</dt>
            <dd>
  REQUIRED if the <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</dd>
          </dl>
          <t>For example, the authorization server redirects the user-agent by
sending the following HTTP response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA
          &state=xyz
]]></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>When the server issues the authorization code in the authorization
response, it MUST associate the <tt>code_challenge</tt> and
<tt>code_challenge_method</tt> values with the authorization code so it can
be verified later.</t>
          <t>Typically, the <tt>code_challenge</tt> and <tt>code_challenge_method</tt> values
are stored in encrypted form in the <tt>code</tt> itself but could
alternatively be stored on the server associated with the code.  The
server MUST NOT include the <tt>code_challenge</tt> value in client requests
in a form that other entities can extract.</t>
          <t>The exact method that the server uses to associate the
<tt>code_challenge</tt> with the issued <tt>code</tt> is out of scope for this
specification.</t>
          <section anchor="authorization-code-error-response" numbered="true" toc="default">
            <name>Error Response</name>
            <t>If the request fails due to a missing, invalid, or mismatching
redirection URI, or if the client identifier is missing or invalid,
the authorization server SHOULD inform the resource owner of the
error and MUST NOT automatically redirect the user-agent to the
invalid redirection URI.</t>
            <t>If the client does not send the <tt>code_challenge</tt> in
the request, the authorization endpoint MUST return the authorization
error response with the <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., code challenge required.</t>
            <t>If the server supporting PKCE does not support the requested
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 redirection URI,
the authorization server informs the client by adding the following
parameters to the query component of the redirection URI using the
<tt>application/x-www-form-urlencoded</tt> format, per Appendix B:</t>
            <dl newline="false" spacing="normal">
              <dt>"error":</dt>
              <dd>
                <t>
  REQUIRED.  A single ASCII <xref target="USASCII" format="default"/> error code from the
following:

                </t>
                <dl newline="false" spacing="normal">
                  <dt>"invalid_request":</dt>
                  <dd>
        The request is missing a required parameter, includes an
invalid parameter value, includes a parameter more than
once, or is otherwise malformed.</dd>
                  <dt>"unauthorized_client":</dt>
                  <dd>
        The client is not authorized to request an authorization
code using this method.</dd>
                  <dt>"access_denied":</dt>
                  <dd>
        The resource owner or authorization server denied the
request.</dd>
                  <dt>"unsupported_response_type":</dt>
                  <dd>
        The authorization server does not support obtaining an
authorization code using this method.</dd>
                  <dt>"invalid_scope":</dt>
                  <dd>
        The requested scope is invalid, unknown, or malformed.</dd>
                  <dt>"server_error":</dt>
                  <dd>
        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.)</dd>
                  <dt>"temporarily_unavailable":</dt>
                  <dd>
        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.)</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>
  OPTIONAL.  Human-readable ASCII <xref target="USASCII" format="default"/> 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.</dd>
              <dt>"error_uri":</dt>
              <dd>
  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.</dd>
              <dt>"state":</dt>
              <dd>
  REQUIRED if a <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</dd>
            </dl>
            <t>For example, the authorization server redirects the user-agent by
sending the following HTTP response:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?error=access_denied&state=xyz
]]></artwork>
          </section>
        </section>
        <section anchor="access-token-request" numbered="true" toc="default">
          <name>Access Token Request</name>
          <t>The client makes a request to the token endpoint by sending the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format per Appendix B with a character encoding of UTF-8 in the HTTP
request entity-body:</t>
          <dl newline="false" spacing="normal">
            <dt>"grant_type":</dt>
            <dd>
  REQUIRED.  Value MUST be set to <tt>authorization_code</tt>.</dd>
            <dt>"code":</dt>
            <dd>
  REQUIRED.  The authorization code received from the
authorization server.</dd>
            <dt>"redirect_uri":</dt>
            <dd>
  REQUIRED, if the <tt>redirect_uri</tt> parameter was included in the
authorization request as described in <xref target="authorization-request" format="default"/>, and their
values MUST be identical.</dd>
            <dt>"client_id":</dt>
            <dd>
  REQUIRED, if the client is not authenticating with the
authorization server as described in <xref target="token-endpoint-client-authentication" format="default"/>.</dd>
            <dt>"code_verifier":</dt>
            <dd>
  REQUIRED.  Code verifier</dd>
          </dl>
          <t>If the client type is confidential or the client was issued client
credentials (or assigned other authentication requirements), the
client MUST authenticate with the authorization server as described
in <xref target="token-endpoint-client-authentication" format="default"/>.</t>
          <t>For example, the client makes the following HTTP request using TLS
(with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=SplxlOBeZQQYbYS6WxSbIA
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>The authorization server MUST:</t>
          <ul spacing="normal">
            <li>require client authentication for confidential clients or for any
client that was issued client credentials (or with other
authentication requirements),</li>
            <li>authenticate the client if client authentication is included,</li>
            <li>ensure that the authorization code was issued to the authenticated
confidential client, or if the client is public, ensure that the
code was issued to <tt>client_id</tt> in the request,</li>
            <li>verify that the authorization code is valid,</li>
            <li>verify the <tt>code_verifier</tt> by calculating the code challenge from the received
<tt>code_verifier</tt> and comparing it with the previously associated
<tt>code_challenge</tt>, after first transforming it according to the
<tt>code_challenge_method</tt> method specified by the client, and</li>
            <li>ensure that the <tt>redirect_uri</tt> parameter is present if the
<tt>redirect_uri</tt> parameter was included in the initial authorization
request as described in <xref target="authorization-request" format="default"/>, and if included ensure that
their values are identical.</li>
          </ul>
        </section>
        <section anchor="authorization-code-access-token-response" numbered="true" toc="default">
          <name>Access Token Response</name>
          <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="access-token-successful-response" format="default"/>.  If the request client
authentication failed or is invalid, the authorization server returns
an error response as described in <xref target="access-token-error-response" format="default"/>.</t>
          <t>An example successful response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache

{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",
  "example_parameter": "example_value"
}
]]></artwork>
        </section>
      </section>
      <section anchor="client-credentials-grant" numbered="true" toc="default">
        <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-flow">
          <name>Client Credentials Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
     +---------+                                  +---------------+
     |         |                                  |               |
     |         |>--(A)- Client Authentication --->| Authorization |
     | Client  |                                  |     Server    |
     |         |<--(B)---- Access Token ---------<|               |
     |         |                                  |               |
     +---------+                                  +---------------+
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-client-credentials-flow" format="default"/> includes the following steps:</t>
        <t>(A)  The client authenticates with the authorization server and
     requests an access token from the token endpoint.</t>
        <t>(B)  The authorization server authenticates the client, and if valid,
     issues an access token.</t>
        <section anchor="authorization-request-and-response" numbered="true" toc="default">
          <name>Authorization Request and Response</name>
          <t>Since the client authentication is used as the authorization grant,
no additional authorization request is needed.</t>
        </section>
        <section anchor="client-credentials-access-token-request" numbered="true" toc="default">
          <name>Access Token Request</name>
          <t>The client makes a request to the token endpoint by adding the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format per Appendix B with a character encoding of UTF-8 in the HTTP
request entity-body:</t>
          <dl newline="false" spacing="normal">
            <dt>"grant_type":</dt>
            <dd>
  REQUIRED.  Value MUST be set to <tt>client_credentials</tt>.</dd>
            <dt>"scope":</dt>
            <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.</dd>
          </dl>
          <t>The client MUST authenticate with the authorization server as
described in <xref target="token-endpoint-client-authentication" format="default"/>.</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 name="" type="" align="left" alt=""><![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 anchor="access-token-response" numbered="true" toc="default">
          <name>Access Token Response</name>
          <t>If the access token request is valid and authorized, the
authorization server issues an access token as described in
<xref target="access-token-successful-response" format="default"/>.  A refresh token SHOULD NOT be included.  If the request
failed client authentication or is invalid, the authorization server
returns an error response as described in <xref target="access-token-error-response" format="default"/>.</t>
          <t>An example successful response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache

{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "example_parameter": "example_value"
}
]]></artwork>
        </section>
      </section>
      <section anchor="extension-grants" numbered="true" toc="default">
        <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 a Security Assertion
Markup Language (SAML) 2.0 assertion grant type as defined by
<xref target="RFC7522" format="default"/>, the client could make the following HTTP request using
TLS (with extra line breaks for display purposes only):</t>
        <artwork name="" type="" align="left" alt=""><![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%3Asaml2-
bearer&assertion=PEFzc2VydGlvbiBJc3N1ZUluc3RhbnQ9IjIwMTEtMDU
[...omitted for brevity...]aG5TdGF0ZW1lbnQ-PC9Bc3NlcnRpb24-
]]></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="access-token-successful-response" format="default"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="access-token-error-response" format="default"/>.</t>
      </section>
    </section>
    <section anchor="issuing-an-access-token" numbered="true" toc="default">
      <name>Issuing an Access Token</name>
      <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="access-token-successful-response" format="default"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="access-token-error-response" format="default"/>.</t>
      <section anchor="access-token-successful-response" numbered="true" toc="default">
        <name>Successful Response</name>
        <t>The authorization server issues an access token and optional refresh
token, and constructs the response by adding the following parameters
to the entity-body of the HTTP response with a 200 (OK) status code:</t>
        <dl newline="false" spacing="normal">
          <dt>"access_token":</dt>
          <dd>
  REQUIRED.  The access token issued by the authorization server.</dd>
          <dt>"token_type":</dt>
          <dd>
  REQUIRED.  The type of the token issued as described in
<xref target="access-token-types" format="default"/>.  Value is case insensitive.</dd>
          <dt>"expires_in":</dt>
          <dd>
  RECOMMENDED.  The lifetime in seconds of the access token.  For
example, the value <tt>3600</tt> denotes that the access token will
expire in one hour from the time the response was generated.
If omitted, the authorization server SHOULD provide the
expiration time via other means or document the default value.</dd>
          <dt>"refresh_token":</dt>
          <dd>
  OPTIONAL.  The refresh token, which can be used to obtain new
access tokens using the same authorization grant as described
in <xref target="refreshing-an-access-token" format="default"/>.</dd>
          <dt>"scope":</dt>
          <dd>
  OPTIONAL, 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" format="default"/>.</dd>
        </dl>
        <t>The parameters are included in the entity-body of the HTTP response
using the <tt>application/json</tt> media type as defined by <xref target="RFC4627" format="default"/>.  The
parameters are serialized into a JavaScript Object Notation (JSON)
structure by adding each parameter at the highest structure level.
Parameter names and string values are included as JSON strings.
Numerical values are included as JSON numbers.  The order of
parameters does not matter and can vary.</t>
        <t>The authorization server MUST include the HTTP <tt>Cache-Control</tt>
response header field <xref target="RFC2616" format="default"/> with a value of <tt>no-store</tt> in any
response containing tokens, credentials, or other sensitive
information, as well as the <tt>Pragma</tt> response header field <xref target="RFC2616" format="default"/>
with a value of <tt>no-cache</tt>.</t>
        <t>For example:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache

{
  "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="access-token-error-response" numbered="true" toc="default">
        <name>Error Response</name>
        <t>The authorization server responds with an HTTP 400 (Bad Request)
status code (unless specified otherwise) and includes the following
parameters with the response:</t>
        <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 newline="false" spacing="normal">
          <dt>"error":</dt>
          <dd>
            <t>
  REQUIRED.  A single ASCII <xref target="USASCII" format="default"/> error code from the following:

            </t>
            <dl newline="false" spacing="normal">
              <dt>"invalid_request":</dt>
              <dd>
        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, or is otherwise malformed.</dd>
              <dt>"invalid_client":</dt>
              <dd>
        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.</dd>
              <dt>"invalid_grant":</dt>
              <dd>
        The provided authorization grant (e.g., authorization
code, resource owner credentials) or refresh token is
invalid, expired, revoked, does not match the redirection
URI used in the authorization request, or was issued to
another client.</dd>
              <dt>"unauthorized_client":</dt>
              <dd>
        The authenticated client is not authorized to use this
authorization grant type.</dd>
              <dt>"unsupported_grant_type":</dt>
              <dd>
        The authorization grant type is not supported by the
authorization server.</dd>
              <dt>"invalid_scope":</dt>
              <dd>
        The requested scope is invalid, unknown, malformed, or
exceeds the scope granted by the resource owner.</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>
  OPTIONAL.  Human-readable ASCII <xref target="USASCII" format="default"/> 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.</dd>
          <dt>"error_uri":</dt>
          <dd>
  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.</dd>
        </dl>
        <t>The parameters are included in the entity-body of the HTTP response
using the <tt>application/json</tt> media type as defined by <xref target="RFC4627" format="default"/>.  The
parameters are serialized into a JSON structure by adding each
parameter at the highest structure level.  Parameter names and string
values are included as JSON strings.  Numerical values are included
as JSON numbers.  The order of parameters does not matter and can
vary.</t>
        <t>For example:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache

{
 "error":"invalid_request"
}
]]></artwork>
      </section>
    </section>
    <section anchor="refreshing-an-access-token" numbered="true" toc="default">
      <name>Refreshing an Access Token</name>
      <t>Authorization servers SHOULD determine, based on a risk assessment,
whether to issue refresh tokens to a certain client.  If the
authorization server decides not to issue refresh tokens, the client
MAY refresh access tokens by utilizing other grant types, such as the
authorization code grant type.  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>If the authorization server issued a refresh token to the client, the
client makes a refresh request to the token endpoint by adding the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format per Appendix B with a character encoding of UTF-8 in the HTTP
request entity-body:</t>
      <dl newline="false" spacing="normal">
        <dt>"grant_type":</dt>
        <dd>
  REQUIRED.  Value MUST be set to <tt>refresh_token</tt>.</dd>
        <dt>"refresh_token":</dt>
        <dd>
  REQUIRED.  The refresh token issued to the client.</dd>
        <dt>"scope":</dt>
        <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.  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.</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.  If the client type is confidential or
the client was issued client credentials (or assigned other
authentication requirements), the client MUST authenticate with the
authorization server as described in <xref target="token-endpoint-client-authentication" format="default"/>.</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 name="" type="" align="left" alt=""><![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>The authorization server MUST:</t>
      <ul spacing="normal">
        <li>require client authentication for confidential clients or for any
client that was issued client credentials (or with other
authentication requirements),</li>
        <li>authenticate the client if client authentication is included and
ensure that the refresh token was issued to the authenticated
client, and</li>
        <li>validate the refresh token.</li>
      </ul>
      <t>Authorization server MUST utilize one of these methods to detect
refresh token replay by malicious actors for public clients:</t>
      <ul spacing="normal">
        <li>
          <em>Sender-constrained refresh tokens:</em> the authorization server
cryptographically binds the refresh token to a certain client
instance by utilizing <xref target="I-D.ietf-oauth-token-binding" format="default"/> or <xref target="RFC8705" format="default"/>.</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.  This stops the attack at the
cost of forcing the legitimate client to obtain a fresh
authorization grant.  </t>
          <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>
        </li>
      </ul>
      <t>If valid and authorized, the authorization server issues an access
token as described in <xref target="access-token-successful-response" format="default"/>.  If the request failed
verification or is invalid, the authorization server returns an error
response as described in <xref target="access-token-error-response" format="default"/>.</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.  The authorization server MAY revoke the old
refresh token after issuing a new refresh token to the client.  If a
new refresh token is issued, the refresh token scope MUST be
identical to that of the refresh token included by the client in the
request.</t>
      <t>Authorization servers MAY revoke refresh tokens automatically in case
of a security event, such as:</t>
      <ul spacing="normal">
        <li>password change</li>
        <li>logout at the authorization server</li>
      </ul>
      <t>Refresh tokens SHOULD expire if the client has been inactive for some
time, i.e., the refresh token has not been used to obtain fresh
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 anchor="accessing-protected-resources" numbered="true" toc="default">
      <name>Accessing Protected Resources</name>
      <t>The client accesses protected resources by presenting the access
token to the resource server.  The resource server MUST validate the
access token and ensure that it has not expired and that its scope
covers the requested resource.  The methods used by the resource
server to validate the access token (as well as any error responses)
are beyond the scope of this specification but generally involve an
interaction or coordination between the resource server and the
authorization server.</t>
      <t>The method in which the client utilizes the access token to
authenticate with the resource server depends on the type of access
token issued by the authorization server.  Typically, it involves
using the HTTP <tt>Authorization</tt> request header field <xref target="RFC2617" format="default"/> with an
authentication scheme defined by the specification of the access
token type used, such as <tt>Bearer</tt>, defined below.</t>
      <section anchor="access-token-types" numbered="true" toc="default">
        <name>Access Token Types</name>
        <t>The access token type provides the client with the information
required to successfully utilize the access token to make a protected
resource request (along with type-specific attributes).  The client
MUST NOT use an access token if it does not understand the token
type.</t>
        <t>For example, the <tt>Bearer</tt> token type defined in this specification is utilized
by simply including the access token string in the request:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
GET /resource/1 HTTP/1.1
Host: example.com
Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
        <t>The above example is provided for illustration purposes only.</t>
        <t>Each access token type definition specifies the additional attributes
(if any) sent to the client together with the <tt>access_token</tt> response
parameter.  It also defines the HTTP authentication method used to
include the access token when making a protected resource request.</t>
      </section>
      <section anchor="bearer-tokens" numbered="true" toc="default">
        <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 extended to include proof-of-possession techniques
by other specifications.</t>
        <section anchor="authenticated-requests" numbered="true" toc="default">
          <name>Authenticated Requests</name>
          <t>This section defines two methods of sending Bearer tokens in resource
requetss to resource servers. Clients MUST NOT use more than one method
to transmit the token in each request.</t>
          <section anchor="authorization-request-header-field" numbered="true" toc="default">
            <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="RFC2617" format="default"/>, the client uses the <tt>Bearer</tt>
authentication scheme to transmit the access token.</t>
            <t>For example:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 GET /resource HTTP/1.1
 Host: server.example.com
 Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
            <t>The syntax of the <tt>Authorization</tt> header field for this scheme
follows the usage of the Basic scheme defined in Section 2 of
<xref target="RFC2617" format="default"/>.  Note that, as with Basic, it does not conform to the
generic syntax defined in Section 1.2 of <xref target="RFC2617" format="default"/> but is compatible
with the general authentication framework in HTTP 1.1 Authentication
<xref target="RFC7235" format="default"/>, 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 name="" type="" align="left" alt=""><![CDATA[
b64token    = 1*( ALPHA / DIGIT /
                 "-" / "." / "_" / "~" / "+" / "/" ) *"="
credentials = "Bearer" 1*SP b64token
]]></artwork>
            <t>Clients SHOULD make authenticated requests with a bearer token using
the <tt>Authorization</tt> request header field with the <tt>Bearer</tt> HTTP
authorization scheme.  Resource servers MUST support this method.</t>
          </section>
          <section anchor="form-encoded-body-parameter" numbered="true" toc="default">
            <name>Form-Encoded Body Parameter</name>
            <t>When sending the access token in the HTTP request entity-body, the
client adds the access token to the request-body using the
<tt>access_token</tt> parameter.  The client MUST NOT use this method unless
all of the following conditions are met:</t>
            <ul spacing="normal">
              <li>The HTTP request entity-header includes the <tt>Content-Type</tt> header
field set to <tt>application/x-www-form-urlencoded</tt>.</li>
              <li>The entity-body follows the encoding requirements of the
<tt>application/x-www-form-urlencoded</tt> content-type as defined by
HTML 4.01 <xref target="W3C.REC-html401-19991224" format="default"/>.</li>
              <li>The HTTP request entity-body is single-part.</li>
              <li>The content to be encoded in the entity-body MUST consist entirely
of ASCII <xref target="USASCII" format="default"/> characters.</li>
              <li>The HTTP request method is one for which the request-body has
defined semantics.  In particular, this means that the <tt>GET</tt>
method MUST NOT be used.</li>
            </ul>
            <t>The entity-body 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 name="" type="" align="left" alt=""><![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="the-www-authenticate-response-header-field" numbered="true" toc="default">
          <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="RFC2617" format="default"/>.</t>
          <t>All challenges defined by this specification 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 are as follows.  Other auth-param attributes MAY be
used as well.</t>
          <t>A <tt>realm</tt> attribute MAY be included to indicate the scope of
protection in the manner described in HTTP/1.1 <xref target="RFC2617" format="default"/>.  The
<tt>realm</tt> attribute MUST NOT appear more than once.</t>
          <t>The <tt>scope</tt> attribute is defined in <xref target="access-token-scope" format="default"/>.  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" format="default"/> and the Open Authentication Technology
Committee (OATC) Online Multimedia Authorization Protocol <xref target="OMAP" format="default"/>
OAuth 2.0 use cases, respectively:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
scope="openid profile email"
scope="urn:example:channel=HBO&urn:example:rating=G,PG-13"
]]></artwork>
          <t>If the protected resource request included an access token and failed
authentication, the resource server SHOULD include the <tt>error</tt>
attribute to provide the client with the reason why the access
request was declined.  The parameter value is described in
<xref target="bearer-token-error-codes" format="default"/>.  In addition, the resource server MAY include the
<tt>error_description</tt> attribute to provide developers a human-readable
explanation that is not meant to be displayed to end-users.  It also
MAY include the <tt>error_uri</tt> attribute with an absolute URI
identifying a human-readable web page explaining the error.  The
<tt>error</tt>, <tt>error_description</tt>, and <tt>error_uri</tt> attributes MUST NOT
appear more than once.</t>
          <t>Values for the <tt>scope</tt> attribute (specified in Appendix A.4)
MUST NOT include characters outside the set %x21 / %x23-5B
/ %x5D-7E for representing scope values and %x20 for delimiters
between scope values.  Values for the <tt>error</tt> and <tt>error_description</tt>
attributes (specified in Appendixes A.7 and A.8) MUST
NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Values for the <tt>error_uri</tt> attribute (specified in Appendix A.9 of)
MUST conform to the URI-reference syntax and thus MUST NOT
include characters outside the set %x21 / %x23-5B / %x5D-7E.</t>
          <t>For example, in response to a protected resource request without
authentication:</t>
          <artwork name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example",
                  error="invalid_token",
                  error_description="The access token expired"
]]></artwork>
        </section>
      </section>
      <section anchor="bearer-token-error-response" numbered="true" toc="default">
        <name>Error Response</name>
        <t>If a resource access request fails, the resource server SHOULD inform
the client of the error.  While the specifics of such error responses
are beyond the scope of this specification, this document establishes
a common registry in <xref target="error-registry" format="default"/> for error values to be shared among
OAuth token authentication schemes.</t>
        <t>New authentication schemes designed primarily for OAuth token
authentication SHOULD define a mechanism for providing an error
status code to the client, in which the error values allowed are
registered in the error registry established by this specification.</t>
        <t>Such schemes MAY limit the set of valid error codes to a subset of
the registered values.  If the error code is returned using a named
parameter, the parameter name SHOULD be <tt>error</tt>.</t>
        <t>Other schemes capable of being used for OAuth token authentication,
but not primarily designed for that purpose, MAY bind their error
values to the registry in the same manner.</t>
        <t>New authentication schemes MAY choose to also specify the use of the
<tt>error_description</tt> and <tt>error_uri</tt> parameters to return error
information in a manner parallel to their usage in this
specification.</t>
        <section anchor="bearer-token-error-codes" numbered="true" toc="default">
          <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 newline="false" spacing="normal">
            <dt>"invalid_request":</dt>
            <dd>
  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.</dd>
            <dt>"invalid_token":</dt>
            <dd>
  The access token provided is expired, revoked, malformed, or
invalid for other reasons.  The resource SHOULD respond with
the HTTP 401 (Unauthorized) status code.  The client MAY
request a new access token and retry the protected resource
request.</dd>
            <dt>"insufficient_scope":</dt>
            <dd>
  The request requires higher privileges than provided 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.</dd>
          </dl>
          <t>If the request lacks any authentication information (e.g., the client
was unaware that authentication is necessary or attempted using an
unsupported authentication method), the resource server SHOULD NOT
include an error code or other error information.</t>
          <t>For example:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
        </section>
      </section>
      <section anchor="access-token-security-considerations" numbered="true" toc="default">
        <name>Access Token Security Considerations</name>
        <section anchor="security-threats" numbered="true" toc="default">
          <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" format="default"/>.</t>
          <section anchor="token-manufacturemodification" numbered="true" toc="default">
            <name>Token manufacture/modification</name>
            <t>An attacker may generate a bogus
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="token-disclosure" numbered="true" toc="default">
            <name>Token disclosure</name>
            <t>Tokens may contain authentication and attribute
statements that include sensitive information.</t>
          </section>
          <section anchor="token-redirect" numbered="true" toc="default">
            <name>Token redirect</name>
            <t>An attacker uses a 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="token-replay" numbered="true" toc="default">
            <name>Token replay</name>
            <t>An attacker attempts to use a token that has already
been used with that resource server in the past.</t>
          </section>
        </section>
        <section anchor="threat-mitigation" numbered="true" toc="default">
          <name>Threat Mitigation</name>
          <t>A large range of threats can be mitigated by protecting the contents
of the token by using a digital signature.
Alternatively, a bearer token can contain a reference to
authorization information, rather than encoding the information
directly.  Such references MUST be infeasible for an attacker to
guess; using a reference may require an extra interaction between a
server and the token issuer to resolve the reference to the
authorization information.  The mechanics of such an interaction are
not defined by this specification.</t>
          <t>This document does not specify the encoding or the contents of the
token; hence, detailed recommendations about the means of
guaranteeing token integrity protection are outside the scope of this
document.  The token integrity protection MUST be sufficient to
prevent the token from being modified.</t>
          <t>To deal with token redirect, 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>The authorization server MUST implement TLS.  Which version(s) ought
to be implemented will vary over time and will depend on the
widespread deployment and known security vulnerabilities at the time
of implementation.</t>
          <t>To protect against token disclosure, confidentiality protection MUST
be applied using TLS with a ciphersuite that provides
confidentiality and integrity protection.  This requires that the
communication interaction between the client and the authorization
server, as well as the interaction between the client and the
resource server, utilize confidentiality and integrity protection.
Since TLS is mandatory to implement and to use with this
specification, it is the preferred approach for preventing token
disclosure via the communication channel.  For those cases where the
client is prevented from observing the contents of the token, token
encryption MUST be applied in addition to the usage of TLS
protection.  As a further defense against token disclosure, the
client MUST validate the TLS certificate chain when making requests
to protected resources, including checking the Certificate Revocation
List (CRL) <xref target="RFC5280" format="default"/>.</t>
          <t>Cookies are typically transmitted in the clear.  Thus, any
information contained in them is at risk of disclosure.  Therefore,
Bearer tokens MUST NOT be stored in cookies that can be sent in the
clear, as any information in them is at risk of disclosure.
See "HTTP State Management Mechanism" <xref target="RFC6265" format="default"/> for security
considerations about cookies.</t>
          <t>In some deployments, including those utilizing load balancers, the
TLS connection to the resource server terminates prior to the actual
server that provides the resource.  This could leave the token
unprotected between the front-end server where the TLS connection
terminates and the back-end server that provides the resource.  In
such deployments, sufficient measures MUST be employed to ensure
confidentiality of the token between the front-end and back-end
servers; encryption of the token is one such possible measure.</t>
          <t>To deal with token capture and replay, the following recommendations
are made: First, the lifetime of the token MUST be limited; one means
of achieving this is by putting a validity time field inside the
protected part of the token.  Note that using short-lived (one hour
or less) tokens reduces the impact of them being leaked.  Second,
confidentiality protection of the exchanges between the client and
the authorization server and between the client and the resource
server MUST be applied.  As a consequence, no eavesdropper along the
communication path is able to observe the token exchange.
Consequently, such an on-path adversary cannot replay the token.
Furthermore, when presenting the token to a resource server, the
client MUST verify the identity of that resource server, as per
Section 3.1 of "HTTP Over TLS" <xref target="RFC2818" format="default"/>.  Note that the client MUST
validate the TLS certificate chain when making these requests to
protected resources.  Presenting the token to an unauthenticated and
unauthorized resource server or failing to validate the certificate
chain will allow adversaries to steal the token and gain unauthorized
access to protected resources.</t>
        </section>
        <section anchor="summary-of-recommendations" numbered="true" toc="default">
          <name>Summary of Recommendations</name>
          <section anchor="safeguard-bearer-tokens" numbered="true" toc="default">
            <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" numbered="true" toc="default">
            <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" numbered="true" toc="default">
            <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" numbered="true" toc="default">
            <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" numbered="true" toc="default">
            <name>Issue short-lived bearer tokens</name>
            <t>Token servers SHOULD issue
short-lived (one hour or less) 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" numbered="true" toc="default">
            <name>Issue scoped bearer tokens</name>
            <t>Token servers SHOULD issue bearer tokens
that contain an audience restriction, scoping their use to the
intended relying party or set of relying parties.</t>
          </section>
          <section anchor="dont-pass-bearer-tokens-in-page-urls" numbered="true" toc="default">
            <name>Don't pass bearer tokens in page URLs</name>
            <t>Bearer tokens MUST NOT be
passed in page URLs (for example, as query string parameters).
Instead, bearer tokens SHOULD be passed in HTTP message headers or
message bodies for which confidentiality measures are taken.
Browsers, web servers, and other software may not adequately
secure URLs in the browser history, web server logs, and other
data structures.  If bearer tokens are passed in page URLs,
attackers might be able to steal them from the history data, logs,
or other unsecured locations.</t>
          </section>
        </section>
        <section anchor="token-replay-prevention" numbered="true" toc="default">
          <name>Token Replay Prevention</name>
          <t>A sender-constrained access token scopes the applicability of an
access token to a certain sender.  This sender is obliged to
demonstrate knowledge of a certain secret as prerequisite for the
acceptance of that token at the recipient (e.g., a resource server).</t>
          <t>Authorization and resource servers SHOULD use mechanisms for sender-
constrained access tokens to prevent token replay as described in
Section 4.8.1.1.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/>.
The use of Mutual TLS for OAuth 2.0 <xref target="RFC8705" format="default"/> is RECOMMENDED.</t>
          <t>It is RECOMMENDED to use end-to-end TLS.  If TLS traffic needs to be
terminated at an intermediary, refer to Section 4.11 of <xref target="I-D.ietf-oauth-security-topics" format="default"/>
for further security advice.</t>
        </section>
        <section anchor="access-token-privilege-restriction" numbered="true" toc="default">
          <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="I-D.ietf-oauth-resource-indicators" format="default"/>, respectively, to
determine the resource server they want to access.</t>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources.  To put this into
effect, the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource.  If not, the resource server must refuse to
serve the respective request.  Clients and authorization servers MAY
utilize the parameter <tt>scope</tt> and
<tt>authorization_details</tt> as specified in <xref target="I-D.ietf-oauth-rar" format="default"/> to
determine those resources and/or actions.</t>
        </section>
      </section>
    </section>
    <section anchor="extensibility" numbered="true" toc="default">
      <name>Extensibility</name>
      <section anchor="defining-access-token-types" numbered="true" toc="default">
        <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 target="access-token-registry" format="default"/>), or by using a unique absolute URI as its name.</t>
        <t>Types utilizing a URI name SHOULD be limited to vendor-specific
implementations that are not commonly applicable, and are specific to
the implementation details of the resource server where they are
used.</t>
        <t>All other types MUST be registered.  Type names MUST conform to the
type-name ABNF.  If the type definition includes a new HTTP
authentication scheme, the type name SHOULD be identical to the HTTP
authentication scheme name (as defined by <xref target="RFC2617" format="default"/>).  The token type
<tt>example</tt> is reserved for use in examples.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
type-name  = 1*name-char
name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="defining-new-endpoint-parameters" numbered="true" toc="default">
        <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 target="parameters-registry" format="default"/>.</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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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 target="parameters-registry" format="default"/>.</t>
      </section>
      <section anchor="new-response-types" numbered="true" toc="default">
        <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 target="response-types-registry" format="default"/>.  Response type
names MUST conform to the response-type ABNF.</t>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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" format="default"/>), the token error response (<xref target="access-token-error-response" format="default"/>), or the
resource access error response (<xref target="bearer-token-error-response" format="default"/>), such error codes MAY be
defined.</t>
        <t>Extension error codes MUST be registered (following the procedures in
<xref target="error-registry" format="default"/>) 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 name="" type="" align="left" alt=""><![CDATA[
error      = 1*error-char
error-char = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <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" format="default"/>: 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" format="default"/> and <xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
      <section anchor="security-client-authentication" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>Authorization servers SHOULD use client authentication if possible.</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705" format="default"/> or
<tt>private_key_jwt</tt> <xref target="OpenID" format="default"/>. When asymmetric methods for client
authentication are used, authorization servers do not need to store
sensitive symmetric keys, making these methods more robust against a
number of attacks.</t>
        <t>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>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 redirection URI
or enlisting the resource owner to confirm identity.  A valid
redirection 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 authorization server must consider the security implications of
interacting with unauthenticated clients and take measures to limit
the potential exposure of other credentials (e.g., refresh tokens)
issued to such clients.</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.
For example, authentication of a dynamically registered client just
ensures the authorization server it is talking to the same client again.
In contrast, if there is a web 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 access more sensible services
or to use the client credential grant type.</t>
        <section anchor="client-authentication-of-native-apps" numbered="true" toc="default">
          <name>Client Authentication of Native Apps</name>
          <t>Secrets that are statically included as part of an app distributed to
multiple users should not be treated as confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, it is NOT
RECOMMENDED for authorization servers to require client
authentication of public native apps clients using a shared secret,
as this serves little value beyond client identification which is
already provided by the <tt>client_id</tt> request parameter.</t>
          <t>Authorization servers that still require a statically included shared
secret for native app clients MUST treat the client as a public
client (as defined in <xref target="client-types" format="default"/>), 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" format="default"/>).</t>
        </section>
      </section>
      <section anchor="native-app-registration" numbered="true" toc="default">
        <name>Registration of Native App Clients</name>
        <t>Except when using a mechanism like Dynamic Client Registration
<xref target="RFC7591" format="default"/> to provision per-instance secrets, native apps are
classified as public clients, as defined in <xref target="client-types" format="default"/>;
they MUST be registered with the authorization server as
such.  Authorization servers MUST record the client type in the
client registration details in order to identify and process requests
accordingly.</t>
        <t>Authorization servers MUST require clients to register their complete
redirect URI (including the path component) and reject authorization
requests that specify a redirect URI that doesn't exactly match the
one that was registered; the exception is loopback redirects, where
an exact match is required except for the port URI component.</t>
        <t>For private-use URI scheme-based redirects, authorization servers
SHOULD enforce the requirement in <xref target="private-use-uri-scheme" format="default"/> 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, requiring a URI
scheme based on a domain name that is under the control of the app
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>Authorization servers MAY request the inclusion of other platform-
specific information, such as the app package or bundle name, or
other information that may be useful for verifying the calling app's
identity on operating systems that support such functions.</t>
      </section>
      <section anchor="client-impersonation" numbered="true" toc="default">
        <name>Client Impersonation</name>
        <t>A malicious client can impersonate another client and obtain access
to protected resources if the impersonated client fails to, or is
unable to, keep its client credentials confidential.</t>
        <t>The authorization server MUST authenticate the client whenever
possible.  If the authorization server cannot authenticate the client
due to the client's nature, the authorization server MUST require the
registration of any redirection URI used for receiving authorization
responses and SHOULD utilize other means to protect resource owners
from such potentially malicious clients.  For example, the
authorization server can engage the resource owner to assist in
identifying the client and its origin.</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" numbered="true" toc="default">
          <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>
      <section anchor="access-tokens" numbered="true" toc="default">
        <name>Access Tokens</name>
        <t>Access token credentials (as well as any confidential access token
attributes) MUST be kept confidential in transit and storage, and
only shared among the authorization server, the resource servers the
access token is valid for, and the client to whom the access token is
issued.  Access token credentials MUST only be transmitted using TLS
as described in <xref target="tls-version" format="default"/> with server authentication as defined by
<xref target="RFC2818" format="default"/>.</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-privilege-restriction-1" numbered="true" toc="default">
          <name>Access Token Privilege Restriction</name>
          <t>The client SHOULD request access tokens with the minimal scope
necessary.  The authorization server SHOULD take the client identity
into account when choosing how to honor the requested scope and MAY
issue an access token with less rights than requested.</t>
          <t>The privileges associated with an access token SHOULD be restricted to
the minimum required for the particular application or use case. This
prevents clients from exceeding the privileges authorized by the
resource owner. It also prevents users from exceeding their privileges
authorized by the respective security policy. Privilege restrictions
also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server. To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server. If not, the resource server MUST refuse to serve the
respective request. Clients and authorization servers MAY utilize the
parameters <tt>scope</tt> or <tt>resource</tt> as specified in
<xref target="RFC8707" format="default"/>, respectively, to determine the
resource server they want to access.</t>
        </section>
        <section anchor="access-token-replay-prevention" numbered="true" toc="default">
          <name>Access Token Replay Prevention</name>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources. To put this into effect,
the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource. If not, the resource server must refuse to serve
the respective request. Clients and authorization servers MAY utilize
the parameter <tt>scope</tt> and <tt>authorization_details</tt> as specified in
<xref target="I-D.ietf-oauth-rar" format="default"/> to determine those resources and/or actions.</t>
          <t>Authorization and resource servers SHOULD use mechanisms for
sender-constrained access tokens to prevent token replay as described
in (#pop_tokens). A sender-constrained access token scopes the applicability
of an access
token to a certain sender. This sender is obliged to demonstrate knowledge
of a certain secret as prerequisite for the acceptance of that token at
the recipient (e.g., a resource server). The use of Mutual TLS for OAuth 2.0
<xref target="RFC8705" format="default"/> is RECOMMENDED.</t>
        </section>
      </section>
      <section anchor="refresh-tokens" numbered="true" toc="default">
        <name>Refresh Tokens</name>
        <t>Authorization servers MAY issue refresh tokens to clients.</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.  Refresh tokens MUST only be transmitted using TLS as
described in <xref target="tls-version" format="default"/> with server authentication as defined by
<xref target="RFC2818" format="default"/>.</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 MUST issue sender-constrained refresh tokens
or use refresh token rotation as described in (#refresh_token_protection).</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>
      <section anchor="protecting-redirect-based-flows" numbered="true" toc="default">
        <name>Protecting Redirect-Based Flows</name>
        <t>When comparing client redirect URIs against pre-registered URIs,
authorization servers MUST utilize exact string matching. This measure
contributes to the prevention of leakage of authorization codes and
access tokens (see (#insufficient_uri_validation)). It can also help to
detect mix-up attacks (see (#mix_up)).</t>
        <t>Clients MUST NOT expose URLs that forward the user's browser to
arbitrary URIs obtained from a query parameter ("open redirector").
Open redirectors can enable exfiltration of authorization codes and
access tokens, see (#open_redirector_on_client).</t>
        <t>Clients MUST prevent Cross-Site Request Forgery (CSRF). In this
context, CSRF refers to requests to the redirection endpoint that do
not originate at the authorization server, but a malicious third party
(see Section 4.4.1.8. of <xref target="RFC6819" format="default"/> for details). Clients that have
ensured that the authorization server supports PKCE MAY
rely the CSRF protection provided by PKCE. In OpenID Connect flows,
the <tt>nonce</tt> parameter provides CSRF protection. Otherwise, one-time
use CSRF tokens carried in the <tt>state</tt> parameter that are securely
bound to the user agent MUST be used for CSRF protection (see
(#csrf_countermeasures)).</t>
        <t>In order to prevent mix-up attacks (see (#mix_up)), clients MUST only process redirect
responses of the authorization server they sent the respective request
to and from the same user agent this authorization request was
initiated with. Clients MUST store the authorization server they sent
an authorization request to and bind this information to the user
agent and check that the authorization request was received from the
correct authorization server. Clients MUST ensure that the subsequent
token request, if applicable, is sent to the same authorization
server. Clients SHOULD use distinct redirect URIs for each
authorization server as a means to identify the authorization server a
particular response came from.</t>
        <t>An AS that redirects a request potentially containing user credentials
MUST avoid forwarding these user credentials accidentally (see
(#redirect_307) for details).</t>
        <section anchor="loopback-redirect-considerations-in-native-apps" numbered="true" toc="default">
          <name>Loopback Redirect Considerations in Native Apps</name>
          <t>Loopback interface redirect URIs use the <tt>http</tt> scheme (i.e., without
Transport Layer Security (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>While redirect URIs using localhost (i.e.,
<tt>http://localhost:{port}/{path}</tt>) function similarly to loopback IP
redirects described in <xref target="loopback-interface-redirection" format="default"/>, 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>
        </section>
      </section>
      <section anchor="authorization-codes" numbered="true" toc="default">
        <name>Authorization Codes</name>
        <t>The transmission of authorization codes MUST be made over a secure
channel, and the client MUST require the use of TLS with its
redirection URI if the URI identifies a network resource.  Since
authorization codes are transmitted via user-agent redirections, they
could potentially be disclosed through user-agent history and HTTP
referrer headers.</t>
        <t>Authorization codes MUST be short lived and single-use.  If the
authorization server observes multiple attempts to exchange an
authorization code for an access token, the authorization server
SHOULD attempt to revoke all refresh and access tokens already granted
based on the compromised authorization code.</t>
        <t>If the client can be authenticated, the authorization servers MUST
authenticate the client and ensure that the authorization code was
issued to the same client.</t>
        <t>Clients MUST prevent injection (replay) of authorization codes into
the authorization response by attackers. The use of PKCE
is RECOMMENDED to this end. The OpenID Connect <tt>nonce</tt> parameter and
ID Token Claim <xref target="OpenID" format="default"/> MAY be used as well. The PKCE challenge or
OpenID Connect <tt>nonce</tt> MUST be transaction-specific and securely bound
to the client and the user agent in which the transaction was started.</t>
        <t>Note: although PKCE so far was designed as a mechanism to protect
native apps, this advice applies to all kinds of OAuth clients,
including web applications.</t>
        <t>When using PKCE, clients SHOULD use PKCE code challenge methods that
do not expose the PKCE verifier in the authorization request.
Otherwise, attackers that can read the authorization request (cf.
Attacker A4 in (#secmodel)) can break the security provided
by PKCE. Currently, <tt>S256</tt> is the only such method.</t>
        <t>Authorization servers MUST support PKCE.</t>
        <t>Authorization servers MUST provide a way to detect their support for
PKCE. To this end, they MUST either (a) publish the element
<tt>code_challenge_methods_supported</tt> in their AS metadata (<xref target="RFC8418" format="default"/>)
containing the supported PKCE challenge methods (which can be used by
the client to detect PKCE support) or (b) provide a
deployment-specific way to ensure or determine PKCE support by the AS.</t>
      </section>
      <section anchor="request-confidentiality" numbered="true" toc="default">
        <name>Request Confidentiality</name>
        <t>Access tokens, refresh tokens, authorization codes, and client
credentials MUST NOT be transmitted in the clear.</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>
      </section>
      <section anchor="ensuring-endpoint-authenticity" numbered="true" toc="default">
        <name>Ensuring Endpoint Authenticity</name>
        <t>In order to prevent man-in-the-middle attacks, the authorization
server MUST require the use of TLS with server authentication as
defined by <xref target="RFC2818" format="default"/> for any request sent to the authorization and
token endpoints.  The client MUST validate the authorization server's
TLS certificate as defined by <xref target="RFC6125" format="default"/> and in accordance with its
requirements for server identity authentication.</t>
      </section>
      <section anchor="credentials-guessing-attacks" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <name>Phishing Attacks</name>
        <t>Wide deployment of this and similar protocols may cause end-users to
become inured to the practice of being redirected to websites where
they are asked to enter their passwords.  If end-users are not
careful to verify the authenticity of these websites before entering
their credentials, it will be possible for attackers to exploit this
practice to steal resource owners' passwords.</t>
        <t>Service providers should attempt to educate end-users about the risks
phishing attacks pose and should provide mechanisms that make it easy
for end-users to confirm the authenticity of their sites.  Client
developers should consider the security implications of how they
interact with the user-agent (e.g., external, embedded), and the
ability of the end-user to verify the authenticity of the
authorization server.</t>
        <t>To reduce the risk of phishing attacks, the authorization servers
MUST require the use of TLS on every endpoint used for end-user
interaction.</t>
      </section>
      <section anchor="fake-external-user-agents-in-native-apps" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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="csrf_countermeasures" numbered="true" toc="default">
        <name>Cross-Site Request Forgery</name>
        <t>An attacker might attempt to inject a request to the redirect URI of
the legitimate client on the victim's device, e.g., to cause the
client to access resources under the attacker's control. This is a
variant of an attack known as Cross-Site Request Forgery (CSRF).</t>
        <t>The traditional countermeasure are CSRF tokens that are bound to the
user agent and passed in the <tt>state</tt> parameter to the authorization
server as described in <xref target="RFC6819" format="default"/>. The same protection is provided by
PKCE or the OpenID Connect <tt>nonce</tt> value.</t>
        <t>When using PKCE instead of <tt>state</tt> or <tt>nonce</tt> for CSRF protection, it is
important to note that:</t>
        <ul spacing="normal">
          <li>Clients MUST ensure that the AS supports PKCE before using PKCE for
CSRF protection. If an authorization server does not support PKCE,
<tt>state</tt> or <tt>nonce</tt> MUST be used for CSRF protection.</li>
          <li>If <tt>state</tt> is used for carrying application state, and integrity of
its contents is a concern, clients MUST protect <tt>state</tt> against
tampering and swapping. This can be achieved by binding the
contents of state to the browser session and/or signed/encrypted
state values <xref target="I-D.bradley-oauth-jwt-encoded-state" format="default"/>.</li>
        </ul>
        <t>AS therefore MUST provide a way to detect their support for PKCE
either via AS metadata according to <xref target="RFC8414" format="default"/> or provide a
deployment-specific way to ensure or determine PKCE support.</t>
      </section>
      <section anchor="clickjacking" numbered="true" toc="default">
        <name>Clickjacking</name>
        <t>As described in Section 4.4.1.9 of <xref target="RFC6819" format="default"/>, the authorization
request is susceptible to clickjacking. An attacker can use this
vector to obtain the user's authentication credentials, change the
scope of access granted to the client, and potentially access the
user's resources.</t>
        <t>Authorization servers MUST prevent clickjacking attacks. Multiple
countermeasures are described in <xref target="RFC6819" format="default"/>, including the use of the
X-Frame-Options HTTP response header field and frame-busting
JavaScript. In addition to those, authorization servers SHOULD also
use Content Security Policy (CSP) level 2 <xref target="CSP-2" format="default"/> 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" format="default"/> for details). Level 2 of this standard provides
a robust mechanism for protecting against clickjacking by using
policies that restrict the origin of frames (using <tt>frame-ancestors</tt>)
together with those that restrict the sources of scripts allowed to
execute on an HTML page (by using <tt>script-src</tt>). A non-normative
example of such a policy is shown in the following listing:</t>
        <t><tt>
HTTP/1.1 200 OK
Content-Security-Policy: frame-ancestors https://ext.example.org:8000
Content-Security-Policy: script-src 'self'
X-Frame-Options: ALLOW-FROM https://ext.example.org:8000
...
</tt></t>
        <t>Because some user agents do not support <xref target="CSP-2" format="default"/>, this technique
SHOULD be combined with others, including those described in
<xref target="RFC6819" format="default"/>, unless such legacy user agents are explicitly unsupported
by the authorization server. Even in such cases, additional
countermeasures SHOULD still be employed.</t>
      </section>
      <section anchor="code-injection-and-input-validation" numbered="true" toc="default">
        <name>Code Injection and Input Validation</name>
        <t>A code injection attack occurs when an input or otherwise external
variable is used by an application unsanitized and causes
modification to the application logic.  This may allow an attacker to
gain access to the application device or its data, cause denial of
service, or introduce a wide range of malicious side-effects.</t>
        <t>The authorization server and client MUST sanitize (and validate when
possible) any value received - in particular, the value of the
<tt>state</tt> and <tt>redirect_uri</tt> parameters.</t>
      </section>
      <section anchor="open-redirectors" numbered="true" toc="default">
        <name>Open Redirectors</name>
        <t>The following attacks can occur when an AS or client has an open
redirector. An open redirector is an endpoint that forwards a user's
browser to an arbitrary URI obtained from a query parameter.</t>
        <section anchor="open_redirector_on_client" numbered="true" toc="default">
          <name>Client as Open Redirector</name>
          <t>Clients MUST NOT expose open redirectors. Attackers may use open
redirectors to produce URLs pointing to the client and utilize them to
exfiltrate authorization codes and access tokens, as described in
(#redir_uri_open_redir). Another abuse case is to produce URLs that
appear to point to the client. This might trick users into trusting the URL
and follow it in their browser. This can be abused for phishing.</t>
          <t>In order to prevent open redirection, clients should only redirect if
the target URLs are whitelisted or if the origin and integrity of a
request can be authenticated. Countermeasures against open redirection
are described by OWASP <xref target="owasp_redir" format="default"/>.</t>
        </section>
        <section anchor="authorization-server-as-open-redirector" numbered="true" toc="default">
          <name>Authorization Server as Open Redirector</name>
          <t>Just as with clients, attackers could try to utilize a user's trust in
the authorization server (and its URL in particular) for performing
phishing attacks. OAuth authorization servers regularly redirect users
to other web sites (the clients), but must do so in a safe way.</t>
          <t><xref target="authorization-code-error-response" format="default"/> already prevents open redirects by
stating that the AS MUST NOT automatically redirect the user agent in case
of an invalid combination of <tt>client_id</tt> and <tt>redirect_uri</tt>.</t>
          <t>However, an attacker could also utilize a correctly registered
redirect URI to perform phishing attacks. The attacker could, for
example, register a client via dynamic client registration <xref target="RFC7591" format="default"/>
and intentionally send an erroneous authorization request, e.g., by
using an invalid scope value, thus instructing the AS to redirect the
user agent to its phishing site.</t>
          <t>The AS MUST take precautions to prevent this threat. Based on its risk
assessment, the AS needs to decide whether it can trust the redirect
URI and SHOULD only automatically redirect the user agent if it trusts
the redirect URI. If the URI is not trusted, the AS MAY inform the
user and rely on the user to make the correct decision.</t>
        </section>
      </section>
      <section anchor="authorization-server-mix-up-mitigation-in-native-apps" numbered="true" toc="default">
        <name>Authorization Server Mix-Up Mitigation in Native Apps</name>
        <t>(TODO: merge this with the regular mix-up section when it is brought in)</t>
        <t>To protect against a compromised or malicious authorization server
attacking another authorization server used by the same app, it is
REQUIRED that a unique redirect URI is used for each authorization
server used by the app (for example, by varying the path component),
and that authorization responses are rejected if the redirect URI
they were received on doesn't match the redirect URI in an outgoing
authorization request.</t>
        <t>The native app MUST store the redirect URI used in the authorization
request with the authorization session data (i.e., along with <tt>state</tt>
and other related data) and MUST verify that the URI on which the
authorization response was received exactly matches it.</t>
        <t>The requirement of <xref target="native-app-registration" format="default"/>, specifically that authorization
servers reject requests with URIs that don't match what was
registered, is also required to prevent such attacks.</t>
      </section>
      <section anchor="native-apps-embedded-user-agents" numbered="true" toc="default">
        <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
credential, not just the OAuth authorization grant that was intended
for the app.</t>
        <t>In typical web-view-based implementations of embedded user-agents,
the host application can record every keystroke entered in the login
form to capture usernames and passwords, automatically submit forms
to bypass user consent, and copy session cookies and use them to
perform authenticated actions as the user.</t>
        <t>Even when used by trusted apps belonging to the same party as the
authorization server, embedded user-agents violate the principle of
least privilege by having access to more powerful credentials than
they need, potentially increasing the attack surface.</t>
        <t>Encouraging users to enter credentials in an embedded user-agent
without the usual address bar and visible certificate validation
features that browsers have makes it impossible for the user to know
if they are signing in to the legitimate site; even when they are, it
trains them that it's OK to enter credentials without validating the
site first.</t>
        <t>Aside from the security concerns, embedded user-agents do not share
the authentication state with other apps or the browser, requiring
the user to log in for every authorization request, which is often
considered an inferior user experience.</t>
      </section>
      <section anchor="other-recommendations" numbered="true" toc="default">
        <name>Other Recommendations</name>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner (see (#client_impersonating)).</t>
      </section>
    </section>
    <section anchor="native-applications" numbered="true" toc="default">
      <name>Native Applications</name>
      <t>Native applications are clients installed and executed on the device
used by the resource owner (i.e., desktop application, native mobile
application).  Native applications require special consideration
related to security, platform capabilities, and overall end-user
experience.</t>
      <t>The authorization endpoint requires interaction between the client
and the resource owner's user-agent. The best current practice is to
perform the OAuth authorization request in an external user-agent
(typically the browser) rather than an embedded user-agent (such as
one implemented with web-views).</t>
      <t>The native application can capture the
response from the authorization server using a redirection URI
with a scheme registered with the operating system to invoke the
client as the handler, manual copy-and-paste of the credentials,
running a local web server, installing a user-agent extension, or
by providing a redirection 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" format="default"/>
for a deeper analysis of the drawbacks of using embedded user-agents
for OAuth.</t>
      <t>Native app authorization requests that use the browser are more
secure and can take advantage of the user's authentication state.
Being able to use the existing authentication session in the browser
enables single sign-on, as users don't need to authenticate to the
authorization server each time they use a new app (unless required by
the authorization server policy).</t>
      <t>Supporting authorization flows between a native app and the browser
is possible without changing the OAuth protocol itself, as the OAuth
authorization request and response are already defined in terms of
URIs.  This encompasses URIs that can be used for inter-app
communication.  Some OAuth server implementations that assume all
clients are confidential web clients will need to add an
understanding of public native app clients and the types of redirect
URIs they use to support this best practice.</t>
      <section anchor="using-inter-app-uri-communication-for-oauth-in-native-apps" numbered="true" toc="default">
        <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" format="default"/>) and using a redirect URI that will return the
authorization response back to the native app (defined in <xref target="authorization-response-native-app" format="default"/>).</t>
      </section>
      <section anchor="authorization-request-native-app" numbered="true" toc="default">
        <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" format="default"/>
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" format="default"/>.  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 redirection 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" numbered="true" toc="default">
        <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>
        <t>To fully support native apps, authorization servers MUST offer
at least the three redirect URI options described in the following
subsections to native apps.  Native apps MAY use whichever redirect
option suits their needs best, taking into account platform-specific
implementation details.</t>
        <section anchor="private-use-uri-scheme" numbered="true" toc="default">
          <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>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 redirection URI utilizes a
private-use URI scheme it registered with the operating system.</t>
          <t>When choosing a URI scheme to associate with the app, apps MUST use a
URI scheme based on a domain name under their control, expressed in
reverse order, as recommended by Section 3.8 of <xref target="RFC7595" format="default"/> for
private-use URI schemes.</t>
          <t>For example, an app that controls the domain name <tt>app.example.com</tt>
can use <tt>com.example.app</tt> as their scheme.  Some authorization
servers assign client identifiers based on domain names, for example,
<tt>client1234.usercontent.example.net</tt>, which can also be used as the
domain name for the scheme when reversed in the same manner.  A
scheme such as <tt>myapp</tt>, however, would not meet this requirement, as
it is not based on a domain name.</t>
          <t>When there are multiple apps by the same publisher, care must be
taken so that each scheme is unique within that group.  On platforms
that use app identifiers based on reverse-order domain names, those
identifiers can be reused as the private-use URI scheme for the OAuth
redirect to help avoid this problem.</t>
          <t>Following the requirements of Section 3.2 of <xref target="RFC3986" format="default"/>, 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 name="" type="" align="left" alt=""><![CDATA[
com.example.app:/oauth2redirect/example-provider
]]></artwork>
          <t>When the authorization server completes the request, it redirects to
the client's redirection URI as it would normally.  As the
redirection 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 anchor="claimed-https-scheme-uri-redirection" numbered="true" toc="default">
          <name>Claimed "https" Scheme URI Redirection</name>
          <t>Some operating systems allow apps to claim <tt>https</tt> scheme <xref target="RFC7230" format="default"/>
URIs 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 name="" type="" align="left" alt=""><![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" format="default"/> 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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![CDATA[
http://[::1]:61023/oauth2redirect/example-provider
]]></artwork>
          <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>
    </section>
    <section anchor="browser-based-apps" numbered="true" toc="default">
      <name>Browser-Based Apps</name>
      <t>Browser-based apps are are clients that run in a web browser, typically
written in JavaScript, also known as "single-page apps". These types of apps
have particular security considerations similar to native apps.</t>
      <t>TODO: Bring in the normative text of the browser-based apps BCP when it is finalized.</t>
    </section>
    <section anchor="differences-from-oauth-20" numbered="true" toc="default">
      <name>Differences from OAuth 2.0</name>
      <t>This draft consolidates the functionality in OAuth 2.0 <xref target="RFC6749" format="default"/>,
OAuth 2.0 for Native Apps (<xref target="RFC8252" format="default"/>),
Proof Key for Code Exchange (<xref target="RFC7636" format="default"/>),
OAuth 2.0 for Browser-Based Apps (<xref target="I-D.ietf-oauth-browser-based-apps" format="default"/>),
OAuth Security Best Current Practice (<xref target="I-D.ietf-oauth-security-topics" format="default"/>),
and Bearer Token Usage (<xref target="RFC6750" format="default"/>).</t>
      <t>Where a later draft updates or obsoletes functionality found in the original
<xref target="RFC6749" format="default"/>, that functionality in this draft is updated with the normative
changes described in a later draft, or removed entirely.</t>
      <t>A non-normative list of changes from OAuth 2.0 is listed below:</t>
      <ul spacing="normal">
        <li>The authorization code grant is extended with the functionality from PKCE (<xref target="RFC7636" format="default"/>)
such that the only method of using the authorization code grant according
to this specification requires the addition of the PKCE mechanism</li>
        <li>Redirect URIs must be compared using exact string matching
as per Section 4.1.3 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>The Implicit grant (<tt>response_type=token</tt>) is omitted from this specification
as per Section 2.1.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>The Resource Owner Password Credentials grant is omitted from this specification
as per Section 2.4 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>Bearer token usage omits the use of bearer tokens in the query string of URIs
as per Section 4.3.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>Refresh tokens must either be sender-constrained or one-time use
as per Section 4.12.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
      </ul>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section anchor="access-token-registry" numbered="true" toc="default">
        <name>OAuth Access Token Types Registry</name>
        <t>This specification establishes the OAuth Access Token Types registry.</t>
        <t>Access token types are registered with a Specification Required
(<xref target="RFC5226" format="default"/>) after a two-week review period on the
oauth-ext-review@ietf.org mailing list, on the advice of one or more
Designated Experts.  However, to allow for the allocation of values
prior to publication, the Designated Expert(s) may approve
registration once they are satisfied that such a specification will
be published.</t>
        <t>Registration requests must be sent to the oauth-ext-review@ietf.org
mailing list for review and comment, with an appropriate subject
(e.g., "Request for access token type: example").</t>
        <t>Within the review period, the Designated Expert(s) will either
approve or deny the registration request, communicating this decision
to the review list and IANA.  Denials should include an explanation
and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s)
and should direct all requests for registration to the review mailing
list.</t>
        <section anchor="registration-template" numbered="true" toc="default">
          <name>Registration Template</name>
          <dl newline="false" spacing="normal">
            <dt>Type name:</dt>
            <dd>
  The name requested (e.g., "example").</dd>
            <dt>Additional Token Endpoint Response Parameters:</dt>
            <dd>
  Additional response parameters returned together with the
<tt>access_token</tt> parameter.  New parameters MUST be separately
registered in the OAuth Parameters registry as described by
<xref target="parameters-registry" format="default"/>.</dd>
            <dt>HTTP Authentication Scheme(s):</dt>
            <dd>
  The HTTP authentication scheme name(s), if any, used to
authenticate protected resource requests using access tokens of
this type.</dd>
            <dt>Change controller:</dt>
            <dd>
  For Standards Track RFCs, state "IETF".  For others, give the name
of the responsible party.  Other details (e.g., postal address,
email address, home page URI) may also be included.</dd>
            <dt>Specification document(s):</dt>
            <dd>
  Reference to the document(s) that specify the parameter,
preferably including a URI that can be used to retrieve a copy of
the document(s).  An indication of the relevant sections may also
be included but is not required.</dd>
          </dl>
        </section>
        <section anchor="initial-registry-contents" numbered="true" toc="default">
          <name>Initial Registry Contents</name>
          <t>The OAuth Access Token Types registry's initial contents are:</t>
          <ul spacing="normal">
            <li>Type name: Bearer</li>
            <li>Additional Token Endpoint Response Parameters: (none)</li>
            <li>HTTP Authentication Scheme(s): Bearer</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): OAuth 2.1</li>
          </ul>
        </section>
      </section>
      <section anchor="parameters-registry" numbered="true" toc="default">
        <name>OAuth Parameters Registry</name>
        <t>This specification establishes the OAuth Parameters registry.</t>
        <t>Additional parameters for inclusion in the authorization endpoint
request, the authorization endpoint response, the token endpoint
request, or the token endpoint response are registered with a
Specification Required (<xref target="RFC5226" format="default"/>) after a two-week review period on
the oauth-ext-review@ietf.org mailing list, on the advice of one or
more Designated Experts.  However, to allow for the allocation of
values prior to publication, the Designated Expert(s) may approve
registration once they are satisfied that such a specification will
be published.</t>
        <t>Registration requests must be sent to the oauth-ext-review@ietf.org
mailing list for review and comment, with an appropriate subject
(e.g., "Request for parameter: example").</t>
        <t>Within the review period, the Designated Expert(s) will either
approve or deny the registration request, communicating this decision
to the review list and IANA.  Denials should include an explanation
and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s)
and should direct all requests for registration to the review mailing
list.</t>
        <section anchor="registration-template-1" numbered="true" toc="default">
          <name>Registration Template</name>
          <dl newline="false" spacing="normal">
            <dt>Parameter name:</dt>
            <dd>
  The name requested (e.g., "example").</dd>
            <dt>Parameter usage location:</dt>
            <dd>
  The location(s) where parameter can be used.  The possible
locations are authorization request, authorization response, token
request, or token response.</dd>
            <dt>Change controller:</dt>
            <dd>
  For Standards Track RFCs, state "IETF".  For others, give the name
of the responsible party.  Other details (e.g., postal address,
email address, home page URI) may also be included.</dd>
            <dt>Specification document(s):</dt>
            <dd>
  Reference to the document(s) that specify the parameter,
preferably including a URI that can be used to retrieve a copy of
the document(s).  An indication of the relevant sections may also
be included but is not required.</dd>
          </dl>
        </section>
        <section anchor="initial-registry-contents-1" numbered="true" toc="default">
          <name>Initial Registry Contents</name>
          <t>The OAuth Parameters registry's initial contents are:</t>
          <ul spacing="normal">
            <li>Parameter name: client_id</li>
            <li>Parameter usage location: authorization request, token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: client_secret</li>
            <li>Parameter usage location: token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: response_type</li>
            <li>Parameter usage location: authorization request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: redirect_uri</li>
            <li>Parameter usage location: authorization request, token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: scope</li>
            <li>Parameter usage location: authorization request, authorization
response, token request, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: state</li>
            <li>Parameter usage location: authorization request, authorization
response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: code</li>
            <li>Parameter usage location: authorization response, token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: error_description</li>
            <li>Parameter usage location: authorization response, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: error_uri</li>
            <li>Parameter usage location: authorization response, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: grant_type</li>
            <li>Parameter usage location: token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: access_token</li>
            <li>Parameter usage location: authorization response, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: token_type</li>
            <li>Parameter usage location: authorization response, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: expires_in</li>
            <li>Parameter usage location: authorization response, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: username</li>
            <li>Parameter usage location: token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: password</li>
            <li>Parameter usage location: token request</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
            <li>Parameter name: refresh_token</li>
            <li>Parameter usage location: token request, token response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
          </ul>
        </section>
      </section>
      <section anchor="response-types-registry" numbered="true" toc="default">
        <name>OAuth Authorization Endpoint Response Types Registry</name>
        <t>This specification establishes the OAuth Authorization Endpoint
Response Types registry.</t>
        <t>Additional response types for use with the authorization endpoint are
registered with a Specification Required (<xref target="RFC5226" format="default"/>) after a two-week
review period on the oauth-ext-review@ietf.org mailing list, on the
advice of one or more Designated Experts.  However, to allow for the
allocation of values prior to publication, the Designated Expert(s)
may approve registration once they are satisfied that such a
specification will be published.</t>
        <t>Registration requests must be sent to the oauth-ext-review@ietf.org
mailing list for review and comment, with an appropriate subject
(e.g., "Request for response type: example").</t>
        <t>Within the review period, the Designated Expert(s) will either
approve or deny the registration request, communicating this decision
to the review list and IANA.  Denials should include an explanation
and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s)
and should direct all requests for registration to the review mailing
list.</t>
        <section anchor="registration-template-2" numbered="true" toc="default">
          <name>Registration Template</name>
          <dl newline="false" spacing="normal">
            <dt>Response type name:</dt>
            <dd>
  The name requested (e.g., "example").</dd>
            <dt>Change controller:</dt>
            <dd>
  For Standards Track RFCs, state "IETF".  For others, give the name
of the responsible party.  Other details (e.g., postal address,
email address, home page URI) may also be included.</dd>
            <dt>Specification document(s):</dt>
            <dd>
  Reference to the document(s) that specify the type, preferably
including a URI that can be used to retrieve a copy of the
document(s).  An indication of the relevant sections may also be
included but is not required.</dd>
          </dl>
        </section>
        <section anchor="initial-registry-contents-2" numbered="true" toc="default">
          <name>Initial Registry Contents</name>
          <t>The OAuth Authorization Endpoint Response Types registry's initial
contents are:</t>
          <ul spacing="normal">
            <li>Response type name: code</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): RFC 6749</li>
          </ul>
        </section>
      </section>
      <section anchor="error-registry" numbered="true" toc="default">
        <name>OAuth Extensions Error Registry</name>
        <t>This specification establishes the OAuth Extensions Error registry.</t>
        <t>Additional error codes used together with other protocol extensions
(i.e., extension grant types, access token types, or extension
parameters) are registered with a Specification Required (<xref target="RFC5226" format="default"/>)
after a two-week review period on the oauth-ext-review@ietf.org
mailing list, on the advice of one or more Designated Experts.
However, to allow for the allocation of values prior to publication,
the Designated Expert(s) may approve registration once they are
satisfied that such a specification will be published.</t>
        <t>Registration requests must be sent to the oauth-ext-review@ietf.org
mailing list for review and comment, with an appropriate subject
(e.g., "Request for error code: example").</t>
        <t>Within the review period, the Designated Expert(s) will either
approve or deny the registration request, communicating this decision
to the review list and IANA.  Denials should include an explanation
and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s)
and should direct all requests for registration to the review mailing
list.</t>
        <section anchor="registration-template-3" numbered="true" toc="default">
          <name>Registration Template</name>
          <dl newline="false" spacing="normal">
            <dt>Error name:</dt>
            <dd>
  The name requested (e.g., "example").  Values for the error name
MUST NOT include characters outside the set %x20-21 / %x23-5B /
%x5D-7E.</dd>
            <dt>Error usage location:</dt>
            <dd>
  The location(s) where the error can be used.  The possible
locations are authorization code grant error response
(<xref target="authorization-code-error-response" format="default"/>), token error response (<xref target="access-token-error-response" format="default"/>), or resource
access error response (<xref target="bearer-token-error-response" format="default"/>).</dd>
            <dt>Related protocol extension:</dt>
            <dd>
  The name of the extension grant type, access token type, or
extension parameter that the error code is used in conjunction
with.</dd>
            <dt>Change controller:</dt>
            <dd>
  For Standards Track RFCs, state "IETF".  For others, give the name
of the responsible party.  Other details (e.g., postal address,
email address, home page URI) may also be included.</dd>
            <dt>Specification document(s):</dt>
            <dd>
  Reference to the document(s) that specify the error code,
preferably including a URI that can be used to retrieve a copy of
the document(s).  An indication of the relevant sections may also
be included but is not required.</dd>
          </dl>
        </section>
        <section anchor="initial-registry-contents-3" numbered="true" toc="default">
          <name>Initial Registry Contents</name>
          <t>The OAuth Error registry's initial contents are:</t>
          <ul spacing="normal">
            <li>Error name: invalid_request</li>
            <li>Error usage location: Resource access error response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): OAuth 2.1</li>
            <li>Error name: invalid_token</li>
            <li>Error usage location: Resource access error response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): OAuth 2.1</li>
            <li>Error name: insufficient_scope</li>
            <li>Error usage location: Resource access error response</li>
            <li>Change controller: IETF</li>
            <li>Specification document(s): OAuth 2.1</li>
          </ul>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2616" target="https://www.rfc-editor.org/info/rfc2616" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2616.xml">
          <front>
            <title>Hypertext Transfer Protocol -- HTTP/1.1</title>
            <seriesInfo name="DOI" value="10.17487/RFC2616"/>
            <seriesInfo name="RFC" value="2616"/>
            <author initials="R." surname="Fielding" fullname="R. Fielding">
              <organization/>
            </author>
            <author initials="J." surname="Gettys" fullname="J. Gettys">
              <organization/>
            </author>
            <author initials="J." surname="Mogul" fullname="J. Mogul">
              <organization/>
            </author>
            <author initials="H." surname="Frystyk" fullname="H. Frystyk">
              <organization/>
            </author>
            <author initials="L." surname="Masinter" fullname="L. Masinter">
              <organization/>
            </author>
            <author initials="P." surname="Leach" fullname="P. Leach">
              <organization/>
            </author>
            <author initials="T." surname="Berners-Lee" fullname="T. Berners-Lee">
              <organization/>
            </author>
            <date year="1999" month="June"/>
            <abstract>
              <t>HTTP has been in use by the World-Wide Web global information initiative since 1990. This specification defines the protocol referred to as "HTTP/1.1", and is an update to RFC 2068.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2617" target="https://www.rfc-editor.org/info/rfc2617" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2617.xml">
          <front>
            <title>HTTP Authentication: Basic and Digest Access Authentication</title>
            <seriesInfo name="DOI" value="10.17487/RFC2617"/>
            <seriesInfo name="RFC" value="2617"/>
            <author initials="J." surname="Franks" fullname="J. Franks">
              <organization/>
            </author>
            <author initials="P." surname="Hallam-Baker" fullname="P. Hallam-Baker">
              <organization/>
            </author>
            <author initials="J." surname="Hostetler" fullname="J. Hostetler">
              <organization/>
            </author>
            <author initials="S." surname="Lawrence" fullname="S. Lawrence">
              <organization/>
            </author>
            <author initials="P." surname="Leach" fullname="P. Leach">
              <organization/>
            </author>
            <author initials="A." surname="Luotonen" fullname="A. Luotonen">
              <organization/>
            </author>
            <author initials="L." surname="Stewart" fullname="L. Stewart">
              <organization/>
            </author>
            <date year="1999" month="June"/>
            <abstract>
              <t>This document provides the specification for HTTP's authentication framework, the original Basic authentication scheme and a scheme based on cryptographic hashes, referred to as "Digest Access Authentication". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2818" target="https://www.rfc-editor.org/info/rfc2818" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2818.xml">
          <front>
            <title>HTTP Over TLS</title>
            <seriesInfo name="DOI" value="10.17487/RFC2818"/>
            <seriesInfo name="RFC" value="2818"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2000" month="May"/>
            <abstract>
              <t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC3629" target="https://www.rfc-editor.org/info/rfc3629" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3629.xml">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <seriesInfo name="DOI" value="10.17487/RFC3629"/>
            <seriesInfo name="RFC" value="3629"/>
            <seriesInfo name="STD" value="63"/>
            <author initials="F." surname="Yergeau" fullname="F. Yergeau">
              <organization/>
            </author>
            <date year="2003" month="November"/>
            <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>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <seriesInfo name="DOI" value="10.17487/RFC3986"/>
            <seriesInfo name="RFC" value="3986"/>
            <seriesInfo name="STD" value="66"/>
            <author initials="T." surname="Berners-Lee" fullname="T. Berners-Lee">
              <organization/>
            </author>
            <author initials="R." surname="Fielding" fullname="R. Fielding">
              <organization/>
            </author>
            <author initials="L." surname="Masinter" fullname="L. Masinter">
              <organization/>
            </author>
            <date year="2005" month="January"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4627" target="https://www.rfc-editor.org/info/rfc4627" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4627.xml">
          <front>
            <title>The application/json Media Type for JavaScript Object Notation (JSON)</title>
            <seriesInfo name="DOI" value="10.17487/RFC4627"/>
            <seriesInfo name="RFC" value="4627"/>
            <author initials="D." surname="Crockford" fullname="D. Crockford">
              <organization/>
            </author>
            <date year="2006" month="July"/>
            <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.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4949" target="https://www.rfc-editor.org/info/rfc4949" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4949.xml">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <seriesInfo name="DOI" value="10.17487/RFC4949"/>
            <seriesInfo name="RFC" value="4949"/>
            <seriesInfo name="FYI" value="36"/>
            <author initials="R." surname="Shirey" fullname="R. Shirey">
              <organization/>
            </author>
            <date year="2007" month="August"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5226" target="https://www.rfc-editor.org/info/rfc5226" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5226.xml">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <seriesInfo name="DOI" value="10.17487/RFC5226"/>
            <seriesInfo name="RFC" value="5226"/>
            <author initials="T." surname="Narten" fullname="T. Narten">
              <organization/>
            </author>
            <author initials="H." surname="Alvestrand" fullname="H. Alvestrand">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <abstract>
              <t>Many protocols make use of identifiers consisting of constants and other well-known values.  Even after a protocol has been defined and deployment has begun, new values may need to be assigned (e.g., for a new option type in DHCP, or a new encryption or authentication transform for IPsec).  To ensure that such quantities have consistent values and interpretations across all implementations, their assignment must be administered by a central authority.  For IETF protocols, that role is provided by the Internet Assigned Numbers Authority (IANA).</t>
              <t>In order for IANA to manage a given namespace prudently, it needs guidelines describing the conditions under which new values can be assigned or when modifications to existing values can be made.  If IANA is expected to play a role in the management of a namespace, IANA must be given clear and concise instructions describing that role.  This document discusses issues that should be considered in formulating a policy for assigning values to a namespace and provides guidelines for authors on the specific text that must be included in documents that place demands on IANA.</t>
              <t>This document obsoletes RFC 2434.  This document specifies an Internet Best  Current Practices for the Internet Community, and requests discussion and  suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <seriesInfo name="DOI" value="10.17487/RFC5234"/>
            <seriesInfo name="RFC" value="5234"/>
            <seriesInfo name="STD" value="68"/>
            <author initials="D." surname="Crocker" fullname="D. Crocker" role="editor">
              <organization/>
            </author>
            <author initials="P." surname="Overell" fullname="P. Overell">
              <organization/>
            </author>
            <date year="2008" month="January"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6125" target="https://www.rfc-editor.org/info/rfc6125" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6125.xml">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <seriesInfo name="DOI" value="10.17487/RFC6125"/>
            <seriesInfo name="RFC" value="6125"/>
            <author initials="P." surname="Saint-Andre" fullname="P. Saint-Andre">
              <organization/>
            </author>
            <author initials="J." surname="Hodges" fullname="J. Hodges">
              <organization/>
            </author>
            <date year="2011" month="March"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <seriesInfo name="DOI" value="10.17487/RFC6749"/>
            <seriesInfo name="RFC" value="6749"/>
            <author initials="D." surname="Hardt" fullname="D. Hardt" role="editor">
              <organization/>
            </author>
            <date year="2012" month="October"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf.  This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <seriesInfo name="DOI" value="10.17487/RFC6750"/>
            <seriesInfo name="RFC" value="6750"/>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="D." surname="Hardt" fullname="D. Hardt">
              <organization/>
            </author>
            <date year="2012" month="October"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources.  Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).  To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8446.xml">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <seriesInfo name="DOI" value="10.17487/RFC8446"/>
            <seriesInfo name="RFC" value="8446"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <seriesInfo name="DOI" value="10.17487/RFC5280"/>
            <seriesInfo name="RFC" value="5280"/>
            <author initials="D." surname="Cooper" fullname="D. Cooper">
              <organization/>
            </author>
            <author initials="S." surname="Santesson" fullname="S. Santesson">
              <organization/>
            </author>
            <author initials="S." surname="Farrell" fullname="S. Farrell">
              <organization/>
            </author>
            <author initials="S." surname="Boeyen" fullname="S. Boeyen">
              <organization/>
            </author>
            <author initials="R." surname="Housley" fullname="R. Housley">
              <organization/>
            </author>
            <author initials="W." surname="Polk" fullname="W. Polk">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7595" target="https://www.rfc-editor.org/info/rfc7595" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7595.xml">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <seriesInfo name="DOI" value="10.17487/RFC7595"/>
            <seriesInfo name="RFC" value="7595"/>
            <seriesInfo name="BCP" value="35"/>
            <author initials="D." surname="Thaler" fullname="D. Thaler" role="editor">
              <organization/>
            </author>
            <author initials="T." surname="Hansen" fullname="T. Hansen">
              <organization/>
            </author>
            <author initials="T." surname="Hardie" fullname="T. Hardie">
              <organization/>
            </author>
            <date year="2015" month="June"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <seriesInfo name="DOI" value="10.17487/RFC8252"/>
            <seriesInfo name="RFC" value="8252"/>
            <seriesInfo name="BCP" value="212"/>
            <author initials="W." surname="Denniss" fullname="W. Denniss">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <date year="2017" month="October"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser.  This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-oauth-security-topics" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-security-topics.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-security-topics-14.txt">
          <front>
            <title>OAuth 2.0 Security Best Current Practice</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-security-topics-14"/>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="A" surname="Labunets" fullname="Andrey Labunets">
              <organization/>
            </author>
            <author initials="D" surname="Fett" fullname="Daniel Fett">
              <organization/>
            </author>
            <date month="February" day="10" year="2020"/>
            <abstract>
              <t>This document describes best current security practice for OAuth 2.0. It updates and extends the OAuth 2.0 Security Threat Model to incorporate practical experiences gathered since OAuth 2.0 was published and covers new threats relevant due to the broader application of OAuth 2.0.</t>
            </abstract>
          </front>
        </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="W3C.REC-html401-19991224" target="http://www.w3.org/TR/1999/REC-html401-19991224" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml4/reference.W3C.REC-html401-19991224.xml">
          <front>
            <title>HTML 4.01 Specification</title>
            <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-html401-19991224"/>
            <author initials="D." surname="Raggett" fullname="Dave Raggett">
              <organization/>
            </author>
            <author initials="A." surname="Hors" fullname="Arnaud Le Hors">
              <organization/>
            </author>
            <author initials="I." surname="Jacobs" fullname="Ian Jacobs">
              <organization/>
            </author>
            <date month="December" day="24" year="1999"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-xml-20081126" target="http://www.w3.org/TR/2008/REC-xml-20081126" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml4/reference.W3C.REC-xml-20081126.xml">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-20081126"/>
            <author initials="T." surname="Bray" fullname="Tim Bray">
              <organization/>
            </author>
            <author initials="J." surname="Paoli" fullname="Jean Paoli">
              <organization/>
            </author>
            <author initials="M." surname="Sperberg-McQueen" fullname="Michael Sperberg-McQueen">
              <organization/>
            </author>
            <author initials="E." surname="Maler" fullname="Eve Maler">
              <organization/>
            </author>
            <author initials="F." surname="Yergeau" fullname="FranÃ§ois Yergeau">
              <organization/>
            </author>
            <date month="November" day="26" year="2008"/>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC7522" target="https://www.rfc-editor.org/info/rfc7522" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7522.xml">
          <front>
            <title>Security Assertion Markup Language (SAML) 2.0 Profile for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <seriesInfo name="DOI" value="10.17487/RFC7522"/>
            <seriesInfo name="RFC" value="7522"/>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore" fullname="C. Mortimore">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <date year="2015" month="May"/>
            <abstract>
              <t>This specification defines the use of a Security Assertion Markup Language (SAML) 2.0 Bearer Assertion as a means for requesting an OAuth 2.0 access token as well as for client authentication.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <seriesInfo name="DOI" value="10.17487/RFC6819"/>
            <seriesInfo name="RFC" value="6819"/>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="McGloin" fullname="M. McGloin">
              <organization/>
            </author>
            <author initials="P." surname="Hunt" fullname="P. Hunt">
              <organization/>
            </author>
            <date year="2013" month="January"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol.  This document is not an  Internet Standards Track specification; it is published for  informational purposes.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC6265" target="https://www.rfc-editor.org/info/rfc6265" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6265.xml">
          <front>
            <title>HTTP State Management Mechanism</title>
            <seriesInfo name="DOI" value="10.17487/RFC6265"/>
            <seriesInfo name="RFC" value="6265"/>
            <author initials="A." surname="Barth" fullname="A. Barth">
              <organization/>
            </author>
            <date year="2011" month="April"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7591" target="https://www.rfc-editor.org/info/rfc7591" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7591.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Protocol</title>
            <seriesInfo name="DOI" value="10.17487/RFC7591"/>
            <seriesInfo name="RFC" value="7591"/>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Machulak" fullname="M. Machulak">
              <organization/>
            </author>
            <author initials="P." surname="Hunt" fullname="P. Hunt">
              <organization/>
            </author>
            <date year="2015" month="July"/>
            <abstract>
              <t>This specification defines mechanisms for dynamically registering OAuth 2.0 clients with authorization servers.  Registration requests send a set of desired client metadata values to the authorization server.  The resulting registration responses return a client identifier to use at the authorization server and the client metadata values registered for the client.  The client can then use this registration information to communicate with the authorization server using the OAuth 2.0 protocol.  This specification also defines a set of common client metadata fields and values for clients to use during registration.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8707" target="https://www.rfc-editor.org/info/rfc8707" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8707.xml">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <seriesInfo name="DOI" value="10.17487/RFC8707"/>
            <seriesInfo name="RFC" value="8707"/>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="H." surname="Tschofenig" fullname="H. Tschofenig">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>This document specifies an extension to the OAuth 2.0 Authorization Framework defining request parameters that enable a client to explicitly signal to an authorization server about the identity of the protected resource(s) to which it is requesting access.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8414" target="https://www.rfc-editor.org/info/rfc8414" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8414.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <seriesInfo name="DOI" value="10.17487/RFC8414"/>
            <seriesInfo name="RFC" value="8414"/>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <date year="2018" month="June"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8418" target="https://www.rfc-editor.org/info/rfc8418" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8418.xml">
          <front>
            <title>Use of the Elliptic Curve Diffie-Hellman Key Agreement Algorithm with X25519 and X448 in the Cryptographic Message Syntax (CMS)</title>
            <seriesInfo name="DOI" value="10.17487/RFC8418"/>
            <seriesInfo name="RFC" value="8418"/>
            <author initials="R." surname="Housley" fullname="R. Housley">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <abstract>
              <t>This document describes the conventions for using the Elliptic Curve Diffie-Hellman (ECDH) key agreement algorithm with curve25519 and curve448 in the Cryptographic Message Syntax (CMS).</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8705" target="https://www.rfc-editor.org/info/rfc8705" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8705.xml">
          <front>
            <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
            <seriesInfo name="DOI" value="10.17487/RFC8705"/>
            <seriesInfo name="RFC" value="8705"/>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates.  OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7230" target="https://www.rfc-editor.org/info/rfc7230" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7230.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <seriesInfo name="DOI" value="10.17487/RFC7230"/>
            <seriesInfo name="RFC" value="7230"/>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7235" target="https://www.rfc-editor.org/info/rfc7235" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7235.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
            <seriesInfo name="DOI" value="10.17487/RFC7235"/>
            <seriesInfo name="RFC" value="7235"/>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems.  This document defines the HTTP Authentication framework.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <seriesInfo name="DOI" value="10.17487/RFC7636"/>
            <seriesInfo name="RFC" value="7636"/>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Agarwal" fullname="N. Agarwal">
              <organization/>
            </author>
            <date year="2015" month="September"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack.  This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-oauth-rar" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-rar.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-rar-01.txt">
          <front>
            <title>OAuth 2.0 Rich Authorization Requests</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rar-01"/>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="J" surname="Richer" fullname="Justin Richer">
              <organization/>
            </author>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <date month="February" day="19" year="2020"/>
            <abstract>
              <t>This document specifies a new parameter "authorization_details" that is used to carry fine grained authorization data in the OAuth authorization request.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-oauth-resource-indicators" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-resource-indicators.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-resource-indicators-08.txt">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-resource-indicators-08"/>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="H" surname="Tschofenig" fullname="Hannes Tschofenig">
              <organization/>
            </author>
            <date month="September" day="11" year="2019"/>
            <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>
        </reference>
        <reference anchor="I-D.bradley-oauth-jwt-encoded-state" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.bradley-oauth-jwt-encoded-state.xml" target="http://www.ietf.org/internet-drafts/draft-bradley-oauth-jwt-encoded-state-09.txt">
          <front>
            <title>Encoding claims in the OAuth 2 state parameter using a JWT</title>
            <seriesInfo name="Internet-Draft" value="draft-bradley-oauth-jwt-encoded-state-09"/>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="H" surname="Zandbelt" fullname="Hans Zandbelt">
              <organization/>
            </author>
            <date month="November" day="4" 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>
        </reference>
        <reference anchor="I-D.ietf-oauth-token-binding" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-token-binding.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-token-binding-08.txt">
          <front>
            <title>OAuth 2.0 Token Binding</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-token-binding-08"/>
            <author initials="M" surname="Jones" fullname="Michael Jones">
              <organization/>
            </author>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="W" surname="Denniss" fullname="William Denniss">
              <organization/>
            </author>
            <date month="October" day="19" year="2018"/>
            <abstract>
              <t>This specification enables OAuth 2.0 implementations to apply Token Binding to Access Tokens, Authorization Codes, Refresh Tokens, JWT Authorization Grants, and JWT Client Authentication.  This cryptographically binds these tokens to a client's Token Binding key pair, possession of which is proven on the TLS connections over which the tokens are intended to be used.  This use of Token Binding protects these tokens from man-in-the-middle and token export and replay attacks.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-browser-based-apps.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-browser-based-apps-05.txt">
          <front>
            <title>OAuth 2.0 for Browser-Based Apps</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-05"/>
            <author initials="A" surname="Parecki" fullname="Aaron Parecki">
              <organization/>
            </author>
            <author initials="D" surname="Waite" fullname="David Waite">
              <organization/>
            </author>
            <date month="February" day="28" year="2020"/>
            <abstract>
              <t>This specification details the security considerations and best practices that must be taken into account when developing browser- based applications that use OAuth 2.0.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="OpenID" target="https://openiD.net/specs/openiD-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0</title>
            <author initials="N." surname="Sakimora">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="OMAP" target="https://www.oatc.us/Standards/Download-Standards">
          <front>
            <title>Online Multimedia Authorization Protocol: An Industry Standard for Authorized Access to Internet Multimedia Resources</title>
            <author initials="J." surname="Huff">
              <organization/>
            </author>
            <author initials="D." surname="Schlacht">
              <organization/>
            </author>
            <author initials="A." surname="Nadalin">
              <organization/>
            </author>
            <author initials="J." surname="Simmons">
              <organization/>
            </author>
            <author initials="P." surname="Rosenberg">
              <organization/>
            </author>
            <author initials="P." surname="Madsen">
              <organization/>
            </author>
            <author initials="T." surname="Ace">
              <organization/>
            </author>
            <author initials="C." surname="Rickelton-Abdi">
              <organization/>
            </author>
            <author initials="B." surname="Boyer">
              <organization/>
            </author>
            <date year="2012" month="April"/>
          </front>
        </reference>
        <reference anchor="NIST800-63" target="http://csrc.nist.gov/publications/">
          <front>
            <title>NIST Special Publication 800-63-1, INFORMATION SECURITY</title>
            <author initials="W." surname="Burr">
              <organization/>
            </author>
            <author initials="D." surname="Dodson">
              <organization/>
            </author>
            <author initials="E." surname="Newton">
              <organization/>
            </author>
            <author initials="R." surname="Perlner">
              <organization/>
            </author>
            <author initials="T." surname="Polk">
              <organization/>
            </author>
            <author initials="S." surname="Gupta">
              <organization/>
            </author>
            <author initials="E." surname="Nabbus">
              <organization/>
            </author>
            <date year="2011" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Messages" target="http://openid.net/specs/openid-connect-messages-1_0.html">
          <front>
            <title>OpenID Connect Messages 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2012" month="June"/>
          </front>
        </reference>
        <reference anchor="owasp_redir" target="https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html">
          <front>
            <title>OWASP Cheat Sheet Series - Unvalidated Redirects and Forwards</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="CSP-2" target="https://www.w3.org/TR/CSP2">
          <front>
            <title>Content Security Policy Level 2</title>
            <author>
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="augmented-backus-naur-form-abnf-syntax" numbered="true" toc="default">
      <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" format="default"/>.  The ABNF below is defined in terms of Unicode
code points <xref target="W3C.REC-xml-20081126" format="default"/>; 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" format="default"/>.</t>
      <t>Some of the definitions that follow use these common definitions:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
VSCHAR     = %x20-7E
NQCHAR     = %x21 / %x23-5B / %x5D-7E
NQSCHAR    = %x20-21 / %x23-5B / %x5D-7E
UNICODECHARNOCRLF = %x09 /%x20-7E / %x80-D7FF /
                    %xE000-FFFD / %x10000-10FFFF
]]></artwork>
      <t>(The UNICODECHARNOCRLF definition is based upon the Char definition
in Section 2.2 of <xref target="W3C.REC-xml-20081126" format="default"/>, but omitting the Carriage
Return and Linefeed characters.)</t>
      <section anchor="clientid-syntax" numbered="true" toc="default">
        <name>"client_id" Syntax</name>
        <t>The <tt>client_id</tt> element is defined in <xref target="client-password" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client-id     = *VSCHAR
]]></artwork>
      </section>
      <section anchor="clientsecret-syntax" numbered="true" toc="default">
        <name>"client_secret" Syntax</name>
        <t>The <tt>client_secret</tt> element is defined in <xref target="client-password" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client-secret = *VSCHAR
]]></artwork>
      </section>
      <section anchor="responsetype-syntax" numbered="true" toc="default">
        <name>"response_type" Syntax</name>
        <t>The <tt>response_type</tt> element is defined in <xref target="response-type" format="default"/> and <xref target="new-response-types" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
response-type = response-name *( SP response-name )
response-name = 1*response-char
response-char = "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="scope-syntax" numbered="true" toc="default">
        <name>"scope" Syntax</name>
        <t>The <tt>scope</tt> element is defined in <xref target="access-token-scope" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 scope       = scope-token *( SP scope-token )
 scope-token = 1*NQCHAR
]]></artwork>
      </section>
      <section anchor="state-syntax" numbered="true" toc="default">
        <name>"state" Syntax</name>
        <t>The <tt>state</tt> element is defined in <xref target="authorization-request" format="default"/>, <xref target="authorization-response" format="default"/>, and <xref target="authorization-code-error-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 state      = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="redirecturi-syntax" numbered="true" toc="default">
        <name>"redirect_uri" Syntax</name>
        <t>The <tt>redirect_uri</tt> element is defined in <xref target="authorization-request" format="default"/>, and <xref target="access-token-request" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 redirect-uri      = URI-reference
]]></artwork>
      </section>
      <section anchor="error-syntax" numbered="true" toc="default">
        <name>"error" Syntax</name>
        <t>The <tt>error</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>, <xref target="access-token-error-response" format="default"/>,
7.2, and 8.5:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error             = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="errordescription-syntax" numbered="true" toc="default">
        <name>"error_description" Syntax</name>
        <t>The <tt>error_description</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>,
<xref target="access-token-error-response" format="default"/>, and <xref target="bearer-token-error-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error-description = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="erroruri-syntax" numbered="true" toc="default">
        <name>"error_uri" Syntax</name>
        <t>The <tt>error_uri</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>, <xref target="access-token-error-response" format="default"/>,
and 7.2:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error-uri         = URI-reference
]]></artwork>
      </section>
      <section anchor="granttype-syntax" numbered="true" toc="default">
        <name>"grant_type" Syntax</name>
        <t>The <tt>grant_type</tt> element is defined in Sections <xref target="access-token-request" format="default"/>, <xref target="access-token-response" format="default"/>, <xref target="client-credentials-access-token-request" format="default"/>,
<xref target="extension-grants" format="default"/>, and <xref target="refreshing-an-access-token" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 grant-type = grant-name / URI-reference
 grant-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="code-syntax" numbered="true" toc="default">
        <name>"code" Syntax</name>
        <t>The <tt>code</tt> element is defined in <xref target="access-token-request" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 code       = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="accesstoken-syntax" numbered="true" toc="default">
        <name>"access_token" Syntax</name>
        <t>The <tt>access_token</tt> element is defined in <xref target="access-token-response" format="default"/> and <xref target="access-token-successful-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 access-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="tokentype-syntax" numbered="true" toc="default">
        <name>"token_type" Syntax</name>
        <t>The <tt>token_type</tt> element is defined in <xref target="access-token-successful-response" format="default"/>, and <xref target="defining-access-token-types" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 token-type = type-name / URI-reference
 type-name  = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="expiresin-syntax" numbered="true" toc="default">
        <name>"expires_in" Syntax</name>
        <t>The <tt>expires_in</tt> element is defined in <xref target="access-token-successful-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 expires-in = 1*DIGIT
]]></artwork>
      </section>
      <section anchor="refreshtoken-syntax" numbered="true" toc="default">
        <name>"refresh_token" Syntax</name>
        <t>The <tt>refresh_token</tt> element is defined in <xref target="access-token-successful-response" format="default"/> and <xref target="refreshing-an-access-token" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 refresh-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="endpoint-parameter-syntax" numbered="true" toc="default">
        <name>Endpoint Parameter Syntax</name>
        <t>The syntax for new endpoint parameters is defined in <xref target="defining-new-endpoint-parameters" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 param-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="codeverifier-syntax" numbered="true" toc="default">
        <name>"code_verifier" Syntax</name>
        <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
      <section anchor="codechallenge-syntax" numbered="true" toc="default">
        <name>"code_challenge" Syntax</name>
        <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
    </section>
    <section anchor="use-of-applicationx-www-form-urlencoded-media-type" numbered="true" toc="default">
      <name>Use of application/x-www-form-urlencoded Media Type</name>
      <t>At the time of publication of this specification, the
<tt>application/x-www-form-urlencoded</tt> media type was defined in
Section 17.13.4 of <xref target="W3C.REC-html401-19991224" format="default"/> 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 payloads using this media
type, names and values MUST be encoded using the UTF-8 character
encoding scheme <xref target="RFC3629" format="default"/> first; the resulting octet sequence then
needs to be further encoded using the escaping rules defined in
<xref target="W3C.REC-html401-19991224" format="default"/>.</t>
      <t>When parsing data from a payload 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 name="" type="" align="left" alt=""><![CDATA[
20 25 26 2B C2 A3 E2 82 AC
]]></artwork>
      <t>and then represented in the payload as:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
+%25%26%2B%C2%A3%E2%82%AC
]]></artwork>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>TBD</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIALw/ZV4AA+x9a3cbx5Xg9/oVfeSTmMwAMEk9LY9mh3rZSqxHRDneJCcr
NoEm2RaAxqAbohhHe/Zv7N/bX7L3WXWruhqkbE9mZzY8iUUC3fW4deu+H+Px
2HV1N6/uF2/Oq+Ll4aY7Lw4m+wX+0qzrv5Zd3SyLp+tyUV0063du1kyX8Pv9
YrYuT7vxqlxX03f1uCnh+fH7g/H+eG/fzcoOnjjYO9gb790c791zrl6t7xfd
etN2B3t7X+4dOHivvM/zuXcX94tny65aL6tu/BjHddOyu1+03cxNm2VbLdtN
e7+4Ae9XN+TNo2q6WdfdpYMnZvXy7H6xacdlO61rt6rvu6Lomun94rJq4de2
WXfr6rT1f18uwp+upJ3iK+OiXsKnjyfFN+V61sEnRdGsz8qlgAFmrc+Wz5aT
l+sz+pIh8bievjNvVIuyngN84NPJOX76r2f4yWTaLMIch5PiFYPODHRYrgHW
9nMZq8Qv/lVgLQOlS3v5rivpYwDL/eK861bt/S++oDfjF2UFbybFt81sVq3b
rpKV8yreNPjRsvetrKXjr/91Hr6ewLllVgTQpSndslkv4LP3FQL59dNHB/v7
X+qvd/bvhF/v6q/39u/JrzfvHOizN7+8p8/eunOgz9768pY+cPvg4I7/9eYt
+fXO/sFt/fWuf/bO3dt78uu9W7fCa/f007u3v9TX7h3cPsBfn40fT+qqOxVs
bwUFx12zqqctPvHd0eHRo2fP7hM05F7deNTMqlnxCHChnAKSA+p2xXhc3B2f
1F1xuKjW9bRcFkdduZwBuhT4eHHarOFKnDLgACnoekzPy+VZNSoOXxw9K/77
zcmtGzRPQOBwiDf8uC9ogHLuJ2hhsBbWtukqfp9v6z5AF/78/uajyesnj8bn
3WJ+a29/vP/ll1/uHxwQMPW7D4v5GK7xvf19hLerdZ3+gO/CSSic7/mzvnNw
53YA7r4C9+7eXX8Q+7fCr/eyz/oRDm7uhV/9p3du3smc1Lpc5z6t2maznlbj
egmXtUTE1qdO1uVsXl3Kgz9cdONqOcVjHLcdQqs/WNe8q5ZwoksiRv3vT9bN
RVutxydlC6OUK7idDp56uaqWzx5H+MIfARosl9W0g3/XVbE/2eNHyvVZ1YXr
3cCz9WO8f1+0q2raygfjKb8M/66r8f7bvQkepznsF837anECuHhvBGR6/1YG
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
nEdQ40Bmtnl9Wmka//4eGhyo704tbiWjFicVeW0J8G2W8yR6n8jHYPQ3sW//
Bg+Ar11d53J5GRGlUIlXTb/vQaQAjmPtz7vcOJWjR0yREe17JyFs6kgqu8yq
h88RC8BxA6wmuKIyIugyl7wYCzyKeFq6RhO7TahY2abionUEZG2pWlbjA2aH
xcm6IfKJdWiVUnrSwKdVe4FbriHP8TWPSpYJk1feRy3bnyIk6eNvJe3qfkHs
+v4XX8jqDEf8Ynry3/AMHhyt5h/mLx9Wf/r97/948sejO99/ODqRsrrhx8gF
vYwcCXhMMlt6iSuSBZXBgr9TqxQ2mtAZ4lTt1RF5/T4pZOeCeyTV5E2LlO81
m6LfXCeH+DlnUuBuaiWBTWCOZ6cB9ImajlVnj7Oi0bFWrNpmkm8bNeSfeGPY
rCCjPkrbGp01Gpw8/TCZ3JlebNjdgHs9c7z7QkEgpcU4bJ4SB6d4mK60peJJ
lY2auvmUIQGQbb3uSU4Uq2qT7bIbkjNdpl5UR7XDJHwVCJymtHbcUWzKEYFr
LnYbqIXol95QGkWXN/HRpqd4HHYjhFbB1KIRiuLASXHkCP3e7fCZ3ZQ5Pijh
5MpsGWHHpsL38t+Lgfz3fu5/k9afjztAaFEyfGx5lZR8zZR510+ZLz4lZd4N
p8zHpk4f6K7xHBlb2tIZcOZYgrcT2aJpffKQ1FDzGHJMXyj+qsVHdvBW5j2W
G8EPvzU9iI+Lxod28MgAQ3mMamX4rHCxXsIo3JEdH6TnRgUnqieWb1WYAtRi
6yieOlnMAxRNdUvv2EsMl58CwdS7moFgDnpuAHrF9aDntkOvGICe36YL7UUM
UCwcE6Q3YTeJCcmW8mNTKF9nruSIFu5W6BmJn2XmNvYKWgzfTlu3MqT//TyT
6qDS4n6eHZVAn9FaDjVVkHwdxZ+/O6Jf/iLIw7EekeTnNyVCWXEjwR6YhT6n
qSQ8qFeTsSz69oVRP26If/RognBL6GufN98lykJhVIaGSDBhwEWNjYrKOYKM
cI33wrlwXB3rLR9qfz/B8UOVx/wLNk4/V+RcfwiqerIIFOKdfg2M1G859C0H
zdTIkTdK0Ovh3ArRejQuTffr79vb1NaezJufJaVlPu8iOcOMQDYMAcUoNSXn
8UlDGLlmkbDnzZJiIJhP946XV/1Wb8N1doiXa7PkfGDs374E2kbZgfGJLjkH
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
fDJdnZy4/w+FKHoaKHoCAA==

-->

</rfc>
