Movatterモバイル変換


[0]ホーム

URL:


RFC 9635Grant Negotiation and Authorization ProtOctober 2024
Richer & ImbaultStandards Track[Page]
Stream:
Internet Engineering Task Force (IETF)
RFC:
9635
Category:
Standards Track
Published:
ISSN:
2070-1721
Authors:
J. Richer,Ed.
Bespoke Engineering
F. Imbault
acert.io

RFC 9635

Grant Negotiation and Authorization Protocol (GNAP)

Abstract

The Grant Negotiation and Authorization Protocol (GNAP) defines a mechanism for delegating authorization to a piece of software and conveying the results and artifacts of that delegation to the software. This delegation can include access to a set of APIs as well as subject information passed directly to the software.

Status of This Memo

This is an Internet Standards Track document.

This document is a product of the Internet Engineering Task Force (IETF). It represents the consensus of the IETF community. It has received public review and has been approved for publication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 of RFC 7841.

Information about the current status of this document, any errata, and how to provide feedback on it may be obtained athttps://www.rfc-editor.org/info/rfc9635.

Copyright Notice

Copyright (c) 2024 IETF Trust and the persons identified as the document authors. All rights reserved.

This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.

Table of Contents

1.Introduction

GNAP allows a piece of software, the client instance, to request delegatedauthorization to resource servers and subject information. The delegated access tothe resource server can be used by the client instance to access resources and APIson behalf a resource owner, and delegated access tosubject information can in turn be used by the client instance to make authentication decisions.This delegation is facilitated by an authorization server, usually onbehalf of a resource owner. The end user operating the software can interactwith the authorization server to authenticate, provide consent, andauthorize the request as a resource owner.

The process by which the delegation happens is known as a grant, andGNAP allows for the negotiation of the grant processover time by multiple parties acting in distinct roles.

This specification focuses on the portions of the delegation process facing the client instance.In particular, this specification defines interoperable methods for a client instance to request, negotiate,and receive access to information facilitated by the authorization server.This specification additionally defines methods for the client instance to accessprotected resources at a resource server.This specification also discusses discovery mechanisms that enable the client instance toconfigure itself dynamically.The means for an authorization server and resource server to interoperate arediscussed in[GNAP-RS].

The focus of this protocol is to provide interoperability between the differentparties acting in each role, not to specify implementation details of each.Where appropriate, GNAP may make recommendations about internal implementationdetails, but these recommendations are to ensure the security of the overalldeployment rather than to be prescriptive in the implementation.

This protocol solves many of the same use cases as OAuth 2.0[RFC6749],OpenID Connect[OIDC], and the family of protocols that have grown uparound that ecosystem. However, GNAP is not an extension of OAuth 2.0and is not intended to be directly compatible with OAuth 2.0. GNAP seeks toprovide functionality and solve use cases that OAuth 2.0 cannot easilyor cleanly address.Appendix A further details the protocol rationale compared to OAuth 2.0.GNAP and OAuth 2.0 will likely exist in parallelfor many deployments, and considerations have been taken to facilitatethe mapping and transition from existing OAuth 2.0 systems to GNAP. Some examplesof these can be found inAppendix B.5.

1.1.Terminology

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14[RFC2119][RFC8174] when, and only when, they appear in all capitals, as shown here.

This document contains non-normative examples of partial and complete HTTP messages, JSON structures, URIs, query components, keys, and other elements. Whenever possible, the document uses URI as a generic term, since it aligns with the recommendations in[RFC3986] and better matches the intent that the identifier may be reachable through various/generic means (compared to URLs). Some examples use a single trailing backslash (\) to indicate line wrapping for long values, as per[RFC8792]. The\ character and leading spaces on wrapped lines are not part of the value.

This document uses the term "mutual TLS" as defined by[RFC8705]. The shortened form "MTLS" is used to mean the same thing.

For brevity, the term "signature" on its own is used in this document to refer to both digital signatures (which use asymmetric cryptography) and keyed Message Authentication Codes (MACs) (which use symmetric cryptography). Similarly, the verb "sign" refers to the generation of either a digital signature or a keyed MAC over a given signature base. The qualified term "digital signature" refers specifically to the output of an asymmetric cryptographic signing operation.

1.2.Roles

The parties in GNAP perform actions under different roles.Roles are defined by the actions taken and the expectations leveragedon the role by the overall protocol.

AuthorizationResourceServerServerClientInstanceResourceEndOwner~~~~~~UserLegend:indicatesinteractionbetweenahumanandcomputerindicatesinteractionbetweentwopiecesofsoftware~~~indicatesapotentialequivalenceorout-of-bandcommunicationbetweenroles
Figure 1:Roles in GNAP
Authorization Server (AS):

Server that grants delegated privileges to a particular instance of client software in the form of access tokens or other information (such as subject information). The AS is uniquely defined by the grant endpoint URI, which is the absolute URI where grant requests are started by clients.

Client:

Application that consumes resources from one or several resource servers, possibly requiring access privileges from one or several ASes. The client is operated by the end user, or it runs autonomously on behalf of a resource owner.

For example, a client can be a mobile application, a web application, a backend data processor, etc.

Note: This specification differentiates between a specific instance (the client instance, identified by its unique key) and the software running the instance (the client software). For some kinds of client software, there could be many instances of that software, each instance with a different key.

Resource Server (RS):

Server that provides an API on protected resources, where operations on the API require a valid access token issued by a trusted AS.

Resource Owner (RO):

Subject entity that may grant or deny operations on resources it has authority upon.

Note: The act of granting or denying an operation may be manual (i.e., through an interaction with a physical person) or automatic (i.e., through predefined organizational rules).

End user:

Natural person that operates a client instance.

Note: That natural person may or may not be the same entity as the RO.

The design of GNAP does not assume any one deployment architecturebut instead attempts to define roles that can be fulfilled in a numberof different ways for different use cases. As long as a given role fulfillsall of its obligations and behaviors as defined by the protocol, GNAP doesnot make additional requirements on its structure or setup.

Multiple roles can be fulfilled by the same party, and a given partycan switch roles in different instances of the protocol. For example, in many instances,the RO and end user are the same person, where a userauthorizes the client instance to act on their own behalf at the RS. In this case,one party fulfills the roles of both RO and end user, but the roles themselvesare still defined separately from each other to allow for otheruse cases where they are fulfilled by different parties.

As another example,in some complex scenarios, an RS receiving requests from one client instance can act asa client instance for a downstream secondary RS in order to fulfill theoriginal request. In this case, one piece of software is both anRS and a client instance from different perspectives, and it fulfills theseroles separately as far as the overall protocol is concerned.

A single role need not be deployed as a monolithic service. For example,a client instance could have frontend components that are installed on the end user's device aswell as a backend system that the frontend communicates with. If both of thesecomponents participate in the delegation protocol, they are both consideredpart of the client instance. If there are several copies of the client softwarethat run separately but all share the same key material, such as adeployed cluster, then this cluster is considered a single client instance.In these cases, the distinct components of what is considered a GNAP client instancemay use any number of different communication mechanisms between them, all of whichwould be considered an implementation detail of the client instances and out of scope of GNAP.

As another example, an AS could likewise be built out of many constituentcomponents in a distributed architecture. The component that the client instancecalls directly could be different from the component that theRO interacts with to drive consent, since API calls and user interactionhave different security considerations in many environments. Furthermore,the AS could need to collect identity claims about the RO from one systemthat deals with user attributes while generating access tokens atanother system that deals with security rights. From the perspective ofGNAP, all of these are pieces of the AS and together fulfill therole of the AS as defined by the protocol. These pieces may have their own internalcommunications mechanisms, which are considered out of scope of GNAP.

1.3.Elements

In addition to the roles above, the protocol also involves severalelements that are acted upon by the roles throughout the process.

Access Token:

A data artifact representing a set of rights and/or attributes.

Note: An access token can be first issued to a client instance (requiring authorization by the RO) and subsequently rotated.

Grant:

(verb): To permit an instance of client software to receive some attributes at a specific time and with a specific duration of validity and/or to exercise some set of delegated rights to access a protected resource.

(noun): The act of granting permission to a client instance.

Privilege:

Right or attribute associated with a subject.

Note: The RO defines and maintains the rights and attributes associated to the protected resource and might temporarily delegate some set of those privileges to an end user. This process is referred to as "privilege delegation".

Protected Resource:

Protected API that is served by an RS and that can be accessed by a client, if and only if a valid and sufficient access token is provided.

Note: To avoid complex sentences, the specification document may simply refer to "resource" instead of "protected resource".

Right:

Ability given to a subject to perform a given operation on a resource under the control of an RS.

Subject:

Person or organization. The subject decides whether and under which conditions its attributes can be disclosed to other parties.

Subject Information:

Set of statements and attributes asserted by an AS about a subject. These statements can be used by the client instance as part of an authentication decision.

1.4.Trust Relationships

GNAP defines its trust objective as follows: the RO trusts the AS to ensure access validation and delegation of protected resources to end users, through third party clients.

This trust objective can be decomposed into trust relationships between software elements and roles, especially the pairs end user/RO, end user/client, client/AS, RS/RO, AS/RO, and AS/RS. Trust of an agent by its pair can exist if the pair is informed that the agent has made a promise to follow the protocol in the past (e.g., pre-registration and uncompromised cryptographic components) or if the pair is able to infer by indirect means that the agent has made such a promise (e.g., a compliant client request). Each agent defines its own valuation function of promises given or received. Examples of such valuations can be the benefits from interacting with other agents (e.g., safety in client access and interoperability with identity standards), the cost of following the protocol (including its security and privacy requirements and recommendations), a ranking of promise importance (e.g., a policy decision made by the AS), the assessment of one's vulnerability or risk of not being able to defend against threats, etc. Those valuations may depend on the context of the request. For instance, depending on the specific case in which GNAP is used, the AS may decide to either take into account or discard hints provided by the client, or the RS may refuse bearer tokens. Some promises can be affected by previous interactions (e.g., repeated requests).

Below are details of each trust relationship:

end user/RO:
This relationship exists only when the end user and the RO are different, in which case the end user needs some out-of-band mechanism of getting the RO consent (seeSection 4). GNAP generally assumes that humans can be authenticated, thanks to identity protocols (for instance, through an id_token assertion as described inSection 2.2).
end user/client:
The client acts as a user agent. Depending on the technology used (browser, single-page application (SPA), mobile application, Internet of Things (IoT) device, etc.), some interactions may or may not be possible (as described inSection 2.5.1). Client developers implement requirements and generally some recommendations or best practices, so that the end users may confidently use their software. However, end users might also face an attacker's client software or a poorly implemented client without even realizing it.
end user/AS:
When the client supports the interaction feature (seeSection 3.3), the end user interacts with the AS through an AS-provided interface. In many cases, this happens through a front-channel interaction through the end user's browser. SeeSection 11.29 for some considerations in trusting these interactions.
client/AS:
An honest AS may face an attacker's client (as discussed just above), or the reverse, and GNAP aims to make common attacks impractical. This specification makes access tokens opaque to the client and defines the request/response scheme in detail, therefore avoiding extra trust hypotheses from this critical piece of software. Yet, the AS may further define cryptographic attestations or optional rules to simplify the access of clients it already trusts, due to past behavior or organizational policies (seeSection 2.3).
RS/RO:
On behalf of the RO, the RS promises to protect its resources from unauthorized access and only accepts valid access tokens issued by a trusted AS. In case tokens are key bound, proper validation of the proofing method is expected from the RS.
AS/RO:
The AS is expected to follow the decisions made by the RO, through either interactive consent requests, repeated interactions, or automated rules (as described inSection 1.6). Privacy considerations aim to reduce the risk of an honest but too-curious AS or the consequences of an unexpected user data exposure.
AS/RS:
The AS promises to issue valid access tokens to legitimate client requests (i.e., after carrying out appropriate due diligence, as defined in the GNAP). Some optional configurations are covered by[GNAP-RS].

A global assumption made by GNAP is that authorization requests are security and privacy sensitive, and appropriate measures are detailed in Sections11 and12, respectively.

A formal trust model is out of scope of this specification, but one could be developed using techniques such as the Promise Theory[promise-theory].

1.5.Protocol Flow

GNAP is fundamentally designed to allow delegated access to APIs and other information, such as subject information, using a multi-stage, stateful process. This process allows different parties to provide information into the system to alter and augment the state of the delegated access and its artifacts.

The underlying requested grant moves through several states as different actions take place during the protocol, as shown inFigure 2.

ContinueNeedInteractionPendingFinishInteraction(approve/deny)CancelRequestProcessingFinalizeFinalizedRevokeorFinalizeUpdateApprovedNoInteractionContinue
Figure 2:State Diagram of a Grant Request in GNAP

The state of the grant request is defined and managed by the AS, though the client instance also needs to manage its view of the grant request over time. The means by which these roles manage their state are outside the scope of this specification.

Processing:
When a request for access (Section 2) is received by the AS, a new grant request is created and placed in theprocessing state by the AS. This state is also entered when an existing grant request is updated by the client instance and when interaction is completed. In this state, the AS processes the context of the grant request to determine whether interaction with the end user or RO is required for approval of the request. The grant request has to exit this state before a response can be returned to the client instance. If approval is required, the request moves to thepending state, and the AS returns a continuation response (Section 3.1) along with any appropriate interaction responses (Section 3.3). If no such approval is required, such as when the client instance is acting on its own behalf or the AS can determine that access has been fulfilled, the request moves to theapproved state where access tokens for API access (Section 3.2) and subject information (Section 3.4) can be issued to the client instance. If the AS determines that no additional processing can occur (such as a timeout or an unrecoverable error), the grant request is moved to thefinalized state and is terminated.
Pending:
When a request needs to be approved by an RO, or interaction with the end user is required, the grant request enters a state ofpending. In this state, no access tokens can be granted, and no subject information can be released to the client instance. While a grant request is in this state, the AS seeks to gather the required consent and authorization (Section 4) for the requested access. A grant request in this state is always associated with a continuation access token bound to the client instance's key (seeSection 3.1 for details of the continuation access token). If no interaction finish method (Section 2.5.2) is associated with this request, the client instance can send a polling continuation request (Section 5.2) to the AS. This returns a continuation response (Section 3.1) while the grant request remains in this state, allowing the client instance to continue to check the state of the pending grant request. If an interaction finish method (Section 2.5.2) is specified in the grant request, the client instance can continue the request after interaction (Section 5.1) to the AS to move this request to theprocessing state to be re-evaluated by the AS. Note that this occurs whether the grant request has been approved or denied by the RO, since the AS needs to take into account the full context of the request before determining the next step for the grant request. When other information is made available in the context of the grant request, such as through the asynchronous actions of the RO, the AS moves this request to theprocessing state to be re-evaluated. If the AS determines that no additional interaction can occur, e.g., all the interaction methods have timed out or a revocation request (Section 5.4) is received from the client instance, the grant request can be moved to thefinalized state.
Approved:
When a request has been approved by an RO and no further interaction with the end user is required, the grant request enters a state ofapproved. In this state, responses to the client instance can include access tokens for API access (Section 3.2) and subject information (Section 3.4). If continuation and updates are allowed for this grant request, the AS can include the continuation response (Section 3.1). In this state, post-interaction continuation requests (Section 5.1) are not allowed and will result in an error, since all interaction is assumed to have been completed. If the client instance sends a polling continuation request (Section 5.2) while the request is in this state, new access tokens (Section 3.2) can be issued in the response. Note that this always creates a new access token, but any existing access tokens could be rotated and revoked using the token management API (Section 6). The client instance can send an update continuation request (Section 5.3) to modify the requested access, causing the AS to move the request back to theprocessing state for re-evaluation. If the AS determines that no additional tokens can be issued and that no additional updates are to be accepted (e.g., the continuation access tokens have expired), the grant is moved to thefinalized state.
Finalized:
After the access tokens are issued, if the AS does not allow any additional updates on the grant request, the grant request enters thefinalized state. This state is also entered when an existing grant request is revoked by the client instance (Section 5.4) or otherwise revoked by the AS (such as through out-of-band action by the RO). This state can also be entered if the AS determines that no additional processing is possible, for example, if the RO has denied the requested access or if interaction is required but no compatible interaction methods are available. Once in this state, no new access tokens can be issued, no subject information can be returned, and no interactions can take place. Once in this state, the grant request is dead and cannot be revived. If future access is desired by the client instance, a new grant request can be created, unrelated to this grant request.

While it is possible to deploy an AS in a stateless environment, GNAP is a stateful protocol, and such deployments will need a way to manage the current state of the grant request in a secure and deterministic fashion without relying on other components, such as the client software, to keep track of the current state.

1.6.Sequences

GNAP can be used in a variety of ways to allow the coredelegation process to take place. Many portions of this process areconditionally present depending on the context of the deployments,and not every step in this overview will happen in all circumstances.

Note that a connection between roles in this process does not necessarilyindicate that a specific protocol message is sent across the wirebetween the components fulfilling the roles in question or that aparticular step is required every time. For example, for a client instance interestedin only getting subject information directly and not calling an RS,all steps involving the RS below do not apply.

In some circumstances,the information needed at a given stage is communicated out of bandor is pre-configured between the components or entities performingthe roles. For example, one entity can fulfill multiple roles, soexplicit communication between the roles is not necessary within theprotocol flow. Additionally, some components may not be involvedin all use cases. For example, a client instance could be calling theAS just to get direct user information and have no need to getan access token to call an RS.

1.6.1.Overall Protocol Sequence

The following diagram provides a general overview of GNAP, including manydifferent optional phases and connections. The diagrams in the following sectionsprovide views of GNAP under more specific circumstances. These additional diagramsuse the same conventions as the overall diagram below.

EndUser~~~~ResourceOwner(RO)ABClient(1)ResourceInstanceServer(RS)2Authorization3Server(AS)456||(7)891011(12)13Legend:indicatesapossibleinteractionwithahumanindicatesaninteractionbetweenprotocolroles~~~indicatesapotentialequivalenceorout-of-bandcommunicationbetweenroles
Figure 3:Overall Sequence of GNAP
  • (A) The end user interacts with the client instance to indicate a need for resources on behalf of the RO. This could identify the RS that the client instance needs to call, the resources needed, or the RO that is needed to approve the request. Note that the RO and end user are often the same entity in practice, but GNAP makes no general assumption that they are.
  • (1) The client instance determines what access is needed and which AS to approach for access. Note that for most situations, the client instance is pre-configured with which AS to talk to and which kinds of access it needs, but some more dynamic processes are discussed inSection 9.1.

  • (2) The client instance requests access at the AS (Section 2).

  • (3) The AS processes the request and determines what is needed to fulfill the request (seeSection 4). The AS sends its response to the client instance (Section 3).

  • (B) If interaction is required, the AS interacts with the RO (Section 4) to gather authorization. The interactive component of the AS can function using a variety of possible mechanisms, including web page redirects, applications, challenge/response protocols, or other methods. The RO approves the request for the client instance being operated by the end user. Note that the RO and end user are often the same entity in practice, and many of GNAP's interaction methods allow the client instance to facilitate the end user interacting with the AS in order to fulfill the role of the RO.

  • (4) The client instance continues the grant at the AS (Section 5). This action could occur in response to receiving a signal that interaction has finished (Section 4.2) or through a periodic polling mechanism, depending on the interaction capabilities of the client software and the options active in the grant request.

  • (5) If the AS determines that access can be granted, it returns a response to the client instance (Section 3), including an access token (Section 3.2) for calling the RS and any directly returned information (Section 3.4) about the RO.

  • (6) The client instance uses the access token (Section 7.2) to call the RS.

  • (7) The RS determines if the token is sufficient for the request by examining the token. The means of the RS determining this access are out of scope of this specification, but some options are discussed in[GNAP-RS].

  • (8) The client instance calls the RS (Section 7.2) using the access token until the RS or client instance determines that the token is no longer valid.

  • (9) When the token no longer works, the client instance rotates the access token (Section 6.1).

  • (10) The AS issues a new access token (Section 3.2) to the client instance with the same rights as the original access token returned in (5).

  • (11) The client instance uses the new access token (Section 7.2) to call the RS.

  • (12) The RS determines if the new token is sufficient for the request, as in (7).

  • (13) The client instance disposes of the token (Section 6.2) once the client instance has completed its access of the RS and no longer needs the token.

The following sections andAppendix B contain specific guidance on how to useGNAP in different situations and deployments. For example, it is possible for theclient instance to never request an access token and never call an RS, just as it ispossible to have no end user involved in the delegation process.

1.6.2.Redirect-Based Interaction

In this example flow, the client instance is a web application that wants access to resources on behalfof the current user, who acts as both the end user and the RO. Since the client instance is capable of directing the user to an arbitrary URI andreceiving responses from the user's browser, interaction here is handled throughfront-channel redirects using the user's browser. The redirection URI used for interaction isa service hosted by the AS in this example. The client instance uses a persistent sessionwith the user to ensure the same user that is starting the interaction is the userthat returns from the interaction.

ClientASEndInstanceUser1StartSession2RequestAccess3InteractionNeeded4RedirectforInteraction5AuthNRO6AuthZEnd7RedirectforContinuationUser8ContinueRequest9GrantAccess10AccessAPIRS||11APIResponse
Figure 4:Diagram of a Redirect-Based Interaction
  • (1) The client instance establishes a session with the user, in the role of the end user.

  • (2) The client instance requests access to the resource (Section 2). The client instance indicates that it can redirect to an arbitrary URI (Section 2.5.1.1) and receive a redirect from the browser (Section 2.5.2.1). The client instance stores verification information for its redirect in the session created in (1).

  • (3) The AS determines that interaction is needed and responds (Section 3) with a URI to send the user to (Section 3.3.1) and information needed to verify the redirect (Section 3.3.5) in (7). The AS also includes information the client instance will need to continue the request (Section 3.1) in (8). The AS associates this continuation information with an ongoing request that will be referenced in (4), (6), and (8).

  • (4) The client instance stores the verification and continuation information from (3) in the session from (1). The client instance then redirects the user to the URI (Section 4.1.1) given by the AS in (3). The user's browser loads the interaction redirect URI. The AS loads the pending request based on the incoming URI generated in (3).

  • (5) The user authenticates at the AS, taking on the role of the RO.

  • (6) As the RO, the user authorizes the pending request from the client instance.

  • (7) When the AS is done interacting with the user, the AS redirects the user back (Section 4.2.1) to the client instance using the redirect URI provided in (2). The redirect URI is augmented with an interaction reference that the AS associates with the ongoing request created in (2) and referenced in (4). The redirect URI is also augmented with a hash of the security information provided in (2) and (3). The client instance loads the verification information from (2) and (3) from the session created in (1). The client instance calculates a hash (Section 4.2.3) based on this information and continues only if the hash validates. Note that the client instance needs to ensure that the parameters for the incoming request match those that it is expecting from the session created in (1). The client instance also needs to be prepared for the end user never being returned to the client instance and handle timeouts appropriately.

  • (8) The client instance loads the continuation information from (3) and sends the interaction reference from (7) in a request to continue the request (Section 5.1). The AS validates the interaction reference, ensuring that the reference is associated with the request being continued.

  • (9) If the request has been authorized, the AS grants access to the information in the form of access tokens (Section 3.2) and direct subject information (Section 3.4) to the client instance.

  • (10) The client instance uses the access token (Section 7.2) to call the RS.

  • (11) The RS validates the access token and returns an appropriate response for theAPI.

An example set of protocol messages for this method can be found inAppendix B.1.

1.6.3.User Code Interaction

In this example flow, the client instance is a device that is capable of presenting a short,human-readable code to the user and directing the user to enter that code ata known URI. The user enters the code at a URI that is an interactive service hosted by theAS in this example. The client instance is not capable of presenting an arbitrary URI to the user,nor is it capable of accepting incoming HTTP requests from the user's browser.The client instance polls the AS while it is waiting for the RO to authorize the request.The user's interaction is assumed to occur on a secondary device. In this example,it is assumed that the user is both the end user and RO. Note that since the user is not assumedto be interacting with the client instance through the same web browser used for interaction atthe AS, the user is not shown as being connected to the client instance in this diagram.

ClientASEndInstance1RequestAccessUser2InteractionNeeded3DisplayUserCode4OpenURI5ROAuthN9ContinueRequest(A)610NotYetGranted(Wait)Code7AuthZ8Complete11ContinueRequest(B)EndUser12GrantAccess13AccessAPIRS||14APIResponse
Figure 5:Diagram of a User-Code-Based Interaction
  • (1) The client instance requests access to the resource (Section 2). The client instance indicates that it can display a user code (Section 2.5.1.3).

  • (2) The AS determines that interaction is needed and responds (Section 3) with a user code to communicate to the user (Section 3.3.3). The AS also includes information the client instance will need to continue the request (Section 3.1) in (8) and (10). The AS associates this continuation information with an ongoing request that will be referenced in (4), (6), (8), and (10).

  • (3) The client instance stores the continuation information from (2) for use in (8) and (10). The client instance then communicates the code to the user (Section 4.1.2) given by the AS in (2).

  • (4) The user directs their browser to the user code URI. This URI is stable and can be communicated via the client software's documentation, the AS documentation, or the client software itself. Since it is assumed that the RO will interact with the AS through a secondary device, the client instance does not provide a mechanism to launch the RO's browser at this URI.

  • (5) The end user authenticates at the AS, taking on the role of the RO.

  • (6) The RO enters the code communicated in (3) to the AS. The AS validates this codeagainst a current request in process.

  • (7) As the RO, the user authorizes the pending request from the client instance.

  • (8) When the AS is done interacting with the user, the AS indicates to the RO that the request has been completed.

  • (9) Meanwhile, the client instance loads the continuation information stored at (3) and continues the request (Section 5). The AS determines which ongoing access request is referenced here and checks its state.

  • (10) If the access request has not yet been authorized by the RO in (6),the AS responds to the client instance to continue the request (Section 3.1)at a future time through additional polled continuation requests. This response can includeupdated continuation information as well as information regarding how long theclient instance should wait before calling again. The client instance replaces its storedcontinuation information from the previous response (2).Note that the AS may need to determine that the RO has not approvedthe request in a sufficient amount of time and return an appropriateerror to the client instance.

  • (11) The client instance continues to poll the AS (Section 5.2) with the newcontinuation information in (9).

  • (12) If the request has been authorized, the AS grants access to the informationin the form of access tokens (Section 3.2) anddirect subject information (Section 3.4) to the client instance.

  • (13) The client instance uses the access token (Section 7.2) to call the RS.

  • (14) The RS validates the access token and returns an appropriate response for theAPI.

An example set of protocol messages for this method can be found inAppendix B.2.

1.6.4.Asynchronous Authorization

In this example flow, the end user and RO roles are fulfilled by different parties, andthe RO does not interact with the client instance. The AS reaches out asynchronously to the ROduring the request process to gather the RO's authorization for the client instance's request.The client instance polls the AS while it is waiting for the RO to authorize the request.

ClientASROInstance1RequestAccess2NotYetGranted(Wait)3AuthN6ContinueRequest(A)47NotYetGranted(Wait)AuthZ5Completed8ContinueRequest(B)9GrantAccess10AccessAPIRS||11APIResponse
Figure 6:Diagram of an Asynchronous Authorization Process, with No End-User Interaction
  • (1) The client instance requests access to the resource (Section 2). The client instance does not send any interaction modes to the server, indicating that it does not expect to interact with the RO. The client instance can also signal which RO it requires authorization from, if known, by using the subject request field (Section 2.2) and user request field (Section 2.4). It's also possible for the AS to determine which RO needs to be contacted by the nature of what access is being requested.

  • (2) The AS determines that interaction is needed, but the client instance cannot interact with the RO. The AS responds (Section 3) with the information the client instance will need to continue the request (Section 3.1) in (6) and (8), including a signal that the client instance should wait before checking the status of the request again. The AS associates this continuation information with an ongoing request that will be referenced in (3), (4), (5), (6), and (8).

  • (3) The AS determines which RO to contact based on the request in (1), through a combination of the user request (Section 2.4), the subject request (Section 2.2), the access request (Section 2.1), and other policy information. The AS contacts the RO and authenticates them.

  • (4) The RO authorizes the pending request from the client instance.

  • (5) When the AS is done interacting with the RO, the AS indicates to the RO that the request has been completed.

  • (6) Meanwhile, the client instance loads the continuation information stored at (2) and continues the request (Section 5). The AS determines which ongoing access request is referenced here and checks its state.

  • (7) If the access request has not yet been authorized by the RO in (6), the AS responds to the client instance to continue the request (Section 3.1) at a future time through additional polling. Note that this response is not an error message, since no error has yet occurred. This response can include refreshed credentials as well as information regarding how long the client instance should wait before calling again. The client instance replaces its stored continuation information from the previous response (2). Note that the AS may need to determine that the RO has not approved the request in a sufficient amount of time and return an appropriate error to the client instance.

  • (8) The client instance continues to poll the AS (Section 5.2) with the new continuation information from (7).

  • (9) If the request has been authorized, the AS grants access to the information in the form of access tokens (Section 3.2) and direct subject information (Section 3.4) to the client instance.

  • (10) The client instance uses the access token (Section 7.2) to call the RS.

  • (11) The RS validates the access token and returns an appropriate response for theAPI.

An example set of protocol messages for this method can be found inAppendix B.4.

Additional considerations for asynchronous interactions like this are discussed inSection 11.36.

1.6.5.Software-Only Authorization

In this example flow, the AS policy allows the client instance to make a call on its own behalf,without the need for an RO to be involved at runtime to approve the decision.Since there is no explicit RO, the client instance does not interact with an RO.

ClientASInstance1RequestAccess2GrantAccess3AccessAPIRS||4APIResponse
Figure 7:Diagram of a Software-Only Authorization, with No End User or Explicit Resource Owner
  • (1) The client instance requests access to the resource (Section 2). The client instance does not send any interaction modes to the server.

  • (2) The AS determines that the request has been authorized based on the identity of the client instance making the request and the access requested (Section 2.1). The AS grants access to the resource in the form of access tokens (Section 3.2) to the client instance. Note that direct subject information (Section 3.4) is not generally applicable in this use case, as there is no user involved.

  • (3) The client instance uses the access token (Section 7.2) to call the RS.

  • (4) The RS validates the access token and returns an appropriate response for the API.

An example set of protocol messages for this method can be found inAppendix B.3.

1.6.6.Refreshing an Expired Access Token

In this example flow, the client instance receives an access token to access an RS throughsome valid GNAP process. The client instance uses that token at the RS for some time, but eventuallythe access token expires. The client instance then gets a refreshed access token by rotating the expired access token's value at the AS using the token management API.

ClientASInstance1RequestAccess2GrantAccess3AccessResourceRS4SuccessResponse(TimePasses)5AccessResource6ErrorResponse7RotateToken8RotatedToken
Figure 8:Diagram of the Process of Refreshing an Expired Access Token
  • (1) The client instance requests access to the resource (Section 2).

  • (2) The AS grants access to the resource (Section 3) with an access token (Section 3.2) usable at the RS. The access token response includes a token management URI.

  • (3) The client instance uses the access token (Section 7.2) to call the RS.

  • (4) The RS validates the access token and returns an appropriate response for the API.

  • (5) Time passes and the client instance uses the access token to call the RS again.

  • (6) The RS validates the access token and determines that the access token is expired. The RS responds to the client instance with an error.

  • (7) The client instance calls the token management URI returned in (2) to rotate the access token (Section 6.1). The client instance uses the access token (Section 7.2) in this call as well as the appropriate key; seeSection 6.1 for details.

  • (8) The AS validates the rotation request, including the signature and keys presented in (7), and refreshes the access token (Section 3.2.1). The response includes a new version of the access token and can also include updated token management information, which the client instance will store in place of the values returned in (2).

1.6.7.Requesting Subject Information Only

In this scenario, the client instance does not call an RS and does notrequest an access token. Instead, the client instance only requestsand is returned direct subject information (Section 3.4). Many differentinteraction modes can be used in this scenario, so these are shown only inthe abstract as functions of the AS here.

ClientASEndInstanceUser1RequestAccess2InteractionNeeded3FacilitateInteraction4ROAuthN5AuthZEnd6SignalContinuationUser7ContinueRequest8GrantAccess
Figure 9:Diagram of the Process of Requesting and Releasing Subject Information apart from Access Tokens
  • (1) The client instance requests access to subject information (Section 2).

  • (2) The AS determines that interaction is needed and responds (Section 3) with appropriate information for facilitating user interaction (Section 3.3).

  • (3) The client instance facilitates the user interacting with the AS (Section 4) as directed in (2).

  • (4) The user authenticates at the AS, taking on the role of the RO.

  • (5) As the RO, the user authorizes the pending request from the client instance.

  • (6) When the AS is done interacting with the user, the AS returns the user to the client instance and signals continuation.

  • (7) The client instance loads the continuation information from (2) and calls the AS to continue the request (Section 5).

  • (8) If the request has been authorized, the AS grants access to the requested direct subject information (Section 3.4) to the client instance. At this stage, the user is generally considered "logged in" to the client instance based on the identifiers and assertions provided by the AS. Note that the AS can restrict the subject information returned, and it might not match what the client instance requested; seeSection 3.4 for details.

1.6.8.Cross-User Authentication

In this scenario, the end user and RO are two different people.Here, the client instance already knows who the end useris, likely through a separate authentication process. Theend user, operating the client instance, needs to get subject informationabout another person in the system, the RO. The RO is given an opportunityto release this information using an asynchronous interaction methodwith the AS. This scenario would apply, for instance, when the end useris an agent in a call center and the RO is a customerauthorizing the call-center agent to access their account on their behalf.

EndROUser1IdentifyRO2ClientASROIDInstance3Req.4Res.5AuthN6AuthZ78FinishCompleted9Cont.10Subj.11InfoReturnROInfo
Figure 10:Diagram of Cross-User Authorization, Where the End User and RO Are Different

Precondition: The end user is authenticated to the client instance, and the clientinstance has an identifier representing the end user that it can present to the AS.This identifier should be unique to the particular session with the client instanceand the AS.The client instance is also known to the AS and allowed to access thisadvanced functionality where the information of someone other thanthe end user is returned to the client instance.

  • (1) The RO communicates a human-readableidentifier to the end user, such as an email address or account number. This communicationhappens out of band from the protocol, such as over the phone between parties. Note that theRO is not interacting with the client instance.

  • (2) The end user communicates the identifier to the client instance. The means by which the identifier is communicated to the client instance are out of scope for this specification.

  • (3) The client instance requests access to subject information (Section 2). The request includes the RO's identifier in thesub_ids field of the subject information request (Section 2.2) and the end user's identifier in theuser field (Section 2.4). The request includes no interaction start methods, since the end user is not expected to be the one interacting with the AS. The request does include the push-based interaction finish method (Section 2.5.2.2) to allow the AS to signal to the client instance when the interaction with the RO has concluded.

  • (4) The AS sees that the identifiers for the end user and subject being requested are different. The AS determines that it can reach out to the RO asynchronously for approval. While it is doing so, the AS returns a continuation response (Section 3.1) with afinish nonce to allow the client instance to continue the grant request after interaction with the RO has concluded.

  • (5) The AS contacts the RO and has them authenticate to the system. The means for doing this are outside the scope of this specification, but the identity of the RO is known from the Subject Identifier sent in (3).

  • (6) The RO is prompted to authorize the end user's request via the client instance. Since the end user was identified in (3) via theuser field, the AS can show this information to the RO during the authorization request.

  • (7) The RO completes the authorization with the AS. The AS marks the request asapproved.

  • (8) The RO pushes the interaction finish message (Section 4.2.2) to the client instance. Note that in the case the RO cannot be reached or the RO denies the request, the AS still sends the interaction finish message to the client instance, after which the client instance can negotiate next steps if possible.

  • (9) The client instance validates the interaction finish message and continues the grant request (Section 5.1).

  • (10) The AS returns the RO's subject information (Section 3.4) to the client instance.

  • (11) The client instance can display or otherwise utilize the RO's user information in its sessionwith the end user. Note that since the client instance requested different sets of userinformation in (3), the client instance does not conflate the end user with the RO.

Additional considerations for asynchronous interactions like this are discussed inSection 11.36.

2.Requesting Access

To start a request, the client instance sends an HTTP POST with a JSON[RFC8259] documentto the grant endpoint of the AS. The grant endpoint is a URI that uniquely identifiesthe AS to client instances and serves as the identifier for the AS. The document is a JSON objectwhere each field represents a different aspect of theclient instance's request. Each field is described in detail in a subsection below.

access_token (object / array of objects):

Describes the rights and properties associated with the requested access token.REQUIRED if requesting an access token. SeeSection 2.1.

subject (object):

Describes the information about the RO that the client instance is requesting to be returned directly in the response from the AS.REQUIRED if requesting subject information. SeeSection 2.2.

client (object / string):

Describes the client instance that is making this request, including the key that the client instance will use to protect this request, any continuation requests at the AS, and any user-facing information about the client instance used in interactions.REQUIRED. SeeSection 2.3.

user (object / string):

Identifies the end user to the AS in a manner that the AS can verify, either directly or by interacting with the end user to determine their status as the RO.OPTIONAL. SeeSection 2.4.

interact (object):

Describes the modes that the client instance supports for allowing the RO to interact with the AS and modes for the client instance to receive updates when interaction is complete.REQUIRED if interaction is supported. SeeSection 2.5.

Additional members of this request object can be defined by extensions using the "GNAP Grant Request Parameters" registry (Section 10.3).

A non-normative example of a grant request is below:

{    "access_token": {        "access": [            {                "type": "photo-api",                "actions": [                    "read",                    "write",                    "dolphin"                ],                "locations": [                    "https://server.example.net/",                    "https://resource.local/other"                ],                "datatypes": [                    "metadata",                    "images"                ]            },            "dolphin-metadata"        ]    },    "client": {      "display": {        "name": "My Client Display Name",        "uri": "https://example.net/client"      },      "key": {        "proof": "httpsig",        "jwk": {          "kty": "RSA",          "e": "AQAB",          "kid": "xyz-1",          "alg": "RS256",          "n": "kOB5rR4Jv0GMeL...."        }      }    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.example.net/return/123455",            "nonce": "LKLTI25DK82FX4T4QFZC"        }    },    "subject": {        "sub_id_formats": ["iss_sub", "opaque"],        "assertion_formats": ["id_token"]    }}

Sending a request to the grant endpoint creates a grant request in theprocessing state. The AS processes this request to determine whether interaction or authorization are necessary (moving to thepending state) or if access can be granted immediately (moving to theapproved state).

The requestMUST be sent as a JSON object in the content of the HTTPPOST request with Content-Typeapplication/json. A key proofing mechanismMAYdefine an alternative content type, as long as the content is formed fromthe JSON object. For example, the attached JSON Web Signature (JWS) key proofing mechanism (seeSection 7.3.4) places the JSON objectinto the payload of a JWS wrapper, which is in turn sent as the message content.

2.1.Requesting Access to Resources

If the client instance is requesting one or more access tokens for thepurpose of accessing an API, the client instanceMUST include anaccess_tokenfield. This fieldMUST be an object (for a single access token (Section 2.1.1)) oran array of these objects (for multiple access tokens (Section 2.1.2)),as described in the following subsections.

2.1.1.Requesting a Single Access Token

To request a single access token, the client instance sends anaccess_token objectcomposed of the following fields.

access (array of objects/strings):

Describes the rights that the client instance is requesting for the access token to be used at the RS.REQUIRED. SeeSection 8.

label (string):

A unique name chosen by the client instance to refer to the resulting access token. The value of this field is opaque to the AS and is not intended to be exposed to or used by the end user. If this field is included in the request, the ASMUST include the same label in the token response (Section 3.2).REQUIRED if used as part of a request for multiple access tokens (Section 2.1.2);OPTIONAL otherwise.

flags (array of strings):

A set of flags that indicate desired attributes or behavior to be attached to the access token by the AS.OPTIONAL.

The values of theflags field defined by this specification are as follows:

"bearer":

If this flag is included, the access token being requested is a bearer token. If this flag is omitted, the access token is bound to the key used by the client instance in this request (or that key's most recent rotation), and the access tokenMUST be presented using the same key and proofing method. Methods for presenting bound and bearer access tokens are described inSection 7.2. SeeSection 11.9 for additional considerations on the use of bearer tokens.

Flag valuesMUST NOT be included more than once. If the request includes a flag value multiple times, the ASMUST return aninvalid_flag error defined inSection 3.6.

Additional flags can be defined by extensions using the "GNAP Access Token Flags" registry (Section 10.4).

In the following non-normative example, the client instance is requesting access to a complex resourcedescribed by a pair of access request object.

"access_token": {    "access": [        {            "type": "photo-api",            "actions": [                "read",                "write",                "delete"            ],            "locations": [                "https://server.example.net/",                "https://resource.local/other"            ],            "datatypes": [                "metadata",                "images"            ]        },        {            "type": "walrus-access",            "actions": [                "foo",                "bar"            ],            "locations": [                "https://resource.other/"            ],            "datatypes": [                "data",                "pictures",                "walrus whiskers"            ]        }    ],    "label": "token1-23"}

If access is approved, the resulting access token is valid for the described resource.Since thebearer flag is not provided in this example, the token is bound to the client instance's key (or its most recent rotation). The tokenis labeled "token1-23". The token response structure is described inSection 3.2.1.

2.1.2.Requesting Multiple Access Tokens

To request that multiple access tokens be returned in a single response, theclient instance sends an array of objects as the value of theaccess_tokenparameter. Each objectMUST conform to the request format for a singleaccess token request, as specified inSection 2.1.1.Additionally, each object in the arrayMUST include thelabel field, andall values of these fieldsMUST be unique within the request. If theclient instance does not include alabel value for any entry in thearray or the values of thelabel field are not unique within the array,the ASMUST return an "invalid_request" error (Section 3.6).

The following non-normative example shows a request for twoseparate access tokens:token1 andtoken2.

"access_token": [    {        "label": "token1",        "access": [            {                "type": "photo-api",                "actions": [                    "read",                    "write",                    "dolphin"                ],                "locations": [                    "https://server.example.net/",                    "https://resource.local/other"                ],                "datatypes": [                    "metadata",                    "images"                ]            },            "dolphin-metadata"        ]    },    {        "label": "token2",        "access": [            {                "type": "walrus-access",                "actions": [                    "foo",                    "bar"                ],                "locations": [                    "https://resource.other/"                ],                "datatypes": [                    "data",                    "pictures",                    "walrus whiskers"                ]            }        ],        "flags": [ "bearer" ]    }]

All approved access requests are returned in the response structure formultiple access tokens (Section 3.2.2) usingthe values of thelabel fields in the request.

2.2.Requesting Subject Information

If the client instance is requesting information about the RO fromthe AS, it sends asubject field as a JSON object. This objectMAYcontain the following fields.

sub_id_formats (array of strings):

An array of Subject Identifier subject formats requested for the RO, as defined by[RFC9493].REQUIRED if Subject Identifiers are requested.

assertion_formats (array of strings):

An array of requested assertion formats. Possible values includeid_token for an OpenID Connect ID Token[OIDC] andsaml2 for a Security Assertion Markup Language (SAML) 2 assertion[SAML2]. Additional assertion formats can be defined in the "GNAP Assertion Formats" registry (Section 10.6).REQUIRED if assertions are requested.

sub_ids (array of objects):

An array of Subject Identifiers representing the subject for which information is being requested. Each object is a Subject Identifier as defined by[RFC9493]. All identifiers in thesub_ids arrayMUST identify the same subject. If omitted, the ASSHOULD assume that subject information requests are about the current user andSHOULD require direct interaction or proof of presence before releasing information.OPTIONAL.

Additional fields can be defined in the "GNAP Subject Information Request Fields" registry (Section 10.5).

"subject": {  "sub_id_formats": [ "iss_sub", "opaque" ],  "assertion_formats": [ "id_token", "saml2" ]}

The AS can determine the RO's identity and permission for releasingthis information through interaction with the RO (Section 4),AS policies, or assertions presented by the client instance (Section 2.4). Ifthis is determined positively, the ASMAY return the RO's information in its response (Section 3.4)as requested.

Subject Identifier types requested by the client instance serve only to identifythe RO in the context of the AS and can't be used as communicationchannels by the client instance, as discussed inSection 3.4.

2.3.Identifying the Client Instance

When sending a new grant request to the AS, the client instanceMUST identifyitself by including its client information in theclient field of the request and by signing therequest with its unique key as described inSection 7.3. Note that once agrant has been created and is in either thepending or theapproved state, the AS candetermine which client is associated with the grant by dereferencing thecontinuation access token sent in the continuation request (Section 5).As a consequence, theclient field is not sent or accepted for continuation requests.

Client information is sent by value as an object or by reference as a string (seeSection 2.3.1).

When client instance information is sentby value, theclient field of the request consists of a JSONobject with the following fields.

key (object / string):

The public key of the client instance to be used in this request as described inSection 7.1 or a reference to a key as described inSection 7.1.1.REQUIRED.

class_id (string):

An identifier string that the AS can use to identify the client software comprising this client instance. The contents and format of this field are up to the AS.OPTIONAL.

display (object):

An object containing additional information that the ASMAY display to the RO during interaction, authorization, and management.OPTIONAL. SeeSection 2.3.2.

"client": {    "key": {        "proof": "httpsig",        "jwk": {            "kty": "RSA",            "e": "AQAB",            "kid": "xyz-1",            "alg": "RS256",            "n": "kOB5rR4Jv0GMeLaY6_It_r3ORwdf8ci_JtffXyaSx8..."        }    },    "class_id": "web-server-1234",    "display": {        "name": "My Client Display Name",        "uri": "https://example.net/client"    }}

Additional fields can be defined in the "GNAP Client Instance Fields" registry (Section 10.7).

Absent additional attestations, profiles, or trust mechanisms, both thedisplay andclass_id fields are self-declarative, presented by the client instance. The AS needs to exercise caution in their interpretation, taking them as a hint but not as absolute truth. Theclass_id field can be used in a variety of ways to help the AS make sense of the particular context in which the client instance is operating. In corporate environments, for example, different levels of trust might apply depending on security policies. This field aims to help the AS adjust its own access decisions for different classes of client software. It is possible to configure a set of values and rules during a pre-registration and then have the client instances provide them later in runtime as a hint to the AS. In other cases, the client runs with a specific AS in mind, so a single hardcoded value would be acceptable (for instance, a set-top box with aclass_id claiming to be "FooBarTV version 4"). While the client instance may not have contacted the AS yet, the value of thisclass_id field can be evaluated by the AS according to a broader context of dynamic use, alongside other related information available elsewhere (for instance, corresponding fields in a certificate). If the AS is not able to interpret or validate the class_id field, itMUST either return aninvalid_client error (Section 3.6) or interpret the request as if the class_id were not present. See additional discussion of client instance impersonation inSection 11.15.

The client instanceMUST prove possession of any presented key by the proofing mechanismassociated with the key in the request. Key proofing methodsare defined in the "GNAP Key Proofing Methods" registry (Section 10.16), and an initial set of methodsis described inSection 7.3.

If the same public key is sent by value on different access requests, the ASMUSTtreat these requests as coming from the same client instance for purposesof identification, authentication, and policy application.

If the AS does not know the client instance's public key ahead of time, the AScan choose how to process the unknown key. Common approaches include:

  • Allowing the request and requiring RO authorization in a trust-on-first-use model

  • Limiting the client's requested access to only certain APIs and information

  • Denying the request entirely by returning aninvalid_client error (Section 3.6)

The client instanceMUST NOT send a symmetric key by value in thekey field of the request, as doing so would exposethe key directly instead of simply proving possession of it. See considerations on symmetric keysinSection 11.7. To use symmetric keys, the client instance can send thekey by reference (Section 7.1.1) orsend the entire client identity by reference (Section 2.3.1).

The client instance's key can be pre-registered with the AS ahead of time and associatedwith a set of policies and allowable actions pertaining to that client. If this pre-registrationincludes other fields that can occur in theclient request object described in this section,such asclass_id ordisplay, the pre-registered valuesMUST take precedence over any valuesgiven at runtime. Additional fields sent during a request but not present in a pre-registeredclient instance record at the ASSHOULD NOT be added to the client's pre-registered record.See additional considerations regarding client instance impersonation inSection 11.15.

A client instance that is capable of talking to multiple ASesSHOULD use a different key for eachAS to prevent a class of mix-up attacks as described inSection 11.31, unless other mechanismscan be used to assure the identity of the AS for a given request.

2.3.1.Identifying the Client Instance by Reference

If the client instance has an instance identifier that the AS can use to determineappropriate key information, the client instance can send this instanceidentifier as a direct reference value in lieu of theclient object.The instance identifierMAY be assigned to a client instance at runtimethrough a grant response (Section 3.5) orMAY be obtained in another fashion,such as a static registration process at the AS.

"client": "client-541-ab"

When the AS receives a request with an instance identifier, the ASMUSTensure that the key used to sign the request (Section 7.3) isassociated with the instance identifier.

If the AS does not recognize the instance identifier, the requestMUST be rejectedwith aninvalid_client error (Section 3.6).

2.3.2.Providing Displayable Client Instance Information

If the client instance has additional information to display to the ROduring any interactions at the AS, itMAY send that information in the"display" field. This field is a JSON object that declares informationto present to the RO during any interactive sequences.

name (string):

Display name of the client software.RECOMMENDED.

uri (string):

User-facing information about the client software, such as a web page. This URIMUST be an absolute URI.OPTIONAL.

logo_uri (string):

Display image to represent the client software. This URIMUST be an absolute URI. The logoMAY be passed by value by using a data: URI[RFC2397] referencing an image media type.OPTIONAL.

"display": {    "name": "My Client Display Name",    "uri": "https://example.net/client",    "logo_uri": "data:image/png;base64,Eeww...="}

Additional display fields can be defined in the "GNAP Client Instance Display Fields" registry (Section 10.8).

The ASSHOULD use these values during interaction with the RO.The values are for informational purposes only andMUST NOTbe taken as authentic proof of the client instance's identity or source.The ASMAY restrict display values to specific client instances, as identifiedby their keys inSection 2.3. See additional considerations for displayedclient information inSection 11.15 and for thelogo_uri inparticular inSection 11.16.

2.3.3.Authenticating the Client Instance

If the presented key is known to the AS and is associated with a single instanceof the client software, the process of presenting a key and proving possession of that keyis sufficient to authenticate the client instance to the AS. The ASMAY associate policieswith the client instance identified by this key, such as limiting which resourcescan be requested and which interaction methods can be used. For example, onlyspecific client instances with certain known keys might be trusted with access tokens without theAS interacting directly with the RO, as inAppendix B.3.

The presentation of a key allows the AS to strongly associate multiplesuccessive requests from the same client instance with each other. Thisis true when the AS knows the key ahead of time and can use the key toauthenticate the client instance, but it is also true if the key isephemeral and created just for this series of requests. As such, theASMAY allow for client instances to make requests with unknown keys. This pattern allowsfor ephemeral client instances (such as single-page applications) and client software with many individual long-lived instances(such as mobile applications) to generate key pairs per instance and use the keys withinthe protocol without having to go through a separate registration step.The ASMAY limit which capabilities are made available to client instanceswith unknown keys. For example, the AS could have a policy saying that onlypreviously registered client instances can request particular resources or that allclient instances with unknown keys have to be interactively approved by an RO.

2.4.Identifying the User

If the client instance knows the identity of the end user through one or moreidentifiers or assertions, the client instanceMAY send that information to theAS in theuser field. The client instanceMAY pass this information by valueor by reference (seeSection 2.4.1).

sub_ids (array of objects):

An array of Subject Identifiers for the end user, as defined by[RFC9493].OPTIONAL.

assertions (array of objects):

An array containing assertions as objects, each containing the assertion format and the assertion value as the JSON string serialization of the assertion, as defined inSection 3.4.OPTIONAL.

"user": {  "sub_ids": [ {    "format": "opaque",    "id": "J2G8G8O4AZ"  } ],  "assertions": [ {    "format": "id_token",    "value": "eyj..."  } ]}

Subject Identifiers are hints to the AS in determining theRO andMUST NOT be taken as authoritative statements that a particularRO is present at the client instance and acting as the end user.

Assertions presented by the client instanceSHOULD be validated by the AS. While the details ofsuch validation are outside the scope of this specification, common validation steps includeverifying the signature of the assertion against a trusted signing key, verifying the audienceand issuer of the assertion map to expected values, and verifying the time window for theassertion itself. However, note that in many use cases, some of these common steps are relaxed.For example, an AS acting as an identity provider (IdP) could expect that assertions being presented using thismechanism were issued by the AS to the client software. The AS would verify that the AS is theissuer of the assertion, not the audience, and that the client instance is instead the audience ofthe assertion. Similarly, an AS might accept a recently expired assertion in order to helpbootstrap a new session with a specific end user.

If the identified end user does not match the RO present at the ASduring an interaction step and the AS is not explicitly allowing a cross-userauthorization, the ASSHOULD reject the request with anunknown_user error (Section 3.6).

If the AS trusts the client instance to present verifiable assertions or known Subject Identifiers,such as an opaque identifier issued by the AS for this specific client instance, the ASMAYdecide, based on its policy, to skip interaction with the RO, evenif the client instance provides one or more interaction modes in its request.

SeeSection 11.30 for considerations for the AS when accepting andprocessing assertions from the client instance.

2.4.1.Identifying the User by Reference

The AS can identify the current end user to the client instance with a referencethat can be used by the client instance to refer to the end user acrossmultiple requests.If the client instance has a reference for the end user at this AS, theclient instanceMAY pass that reference as a string. The format of this stringis opaque to the client instance.

"user": "XUT2MFM1XBIKJKSDU8QM"

One means of dynamically obtaining such a user reference is from the AS returninganopaque Subject Identifier as described inSection 3.4.Other means of configuring a client instance with a user identifier are outof scope of this specification.The lifetime and validity of these user references are determined by the AS, andthis lifetime is not exposed to the client instance in GNAP. As such, a client instanceusing such a user reference is likely to keep using that reference untilit stops working.

User reference identifiers are not intended to be human-readableuser identifiers or structured assertions. For the client instance to sendeither of these, the client can use the full user request object (Section 2.4) instead.

If the AS does not recognize the user reference, itMUSTreturn anunknown_user error (Section 3.6).

2.5.Interacting with the User

Often, the AS will require interaction with the RO (Section 4) in order toapprove a requested delegation to the client instance for both access to resources and directsubject information. Many times, the end user using the client instance is the same person asthe RO, and the client instance can directly drive interaction with the end user by facilitatingthe process through means such as redirection to a URI or launching an application. Other times, theclient instance can provide information to start the RO's interaction on a secondarydevice, or the client instance will wait for the RO to approve the request asynchronously.The client instance could also be signaled that interaction has concluded through acallback mechanism.

The client instance declares the parameters for interaction methods that it can supportusing theinteract field.

Theinteract field is a JSON object with three keys whose values declare how the client can initiateand complete the request, as well as provide hints to the AS about user preferences such as locale.A client instanceMUST NOT declare an interaction mode it does not support.The client instanceMAY send multiple modes in the same request.There is no preference order specified in this request. An ASMAY respond to any, all, or none of the presented interaction modes (Section 3.3) in a request, depending onits capabilities and what is allowed to fulfill the request.

start (array of objects/strings):

Indicates how the client instance can start an interaction.REQUIRED. SeeSection 2.5.1.

finish (object):

Indicates how the client instance can receive an indication that interaction has finished at the AS.OPTIONAL. SeeSection 2.5.2.

hints (object):

Provides additional information to inform the interaction process at the AS.OPTIONAL. SeeSection 2.5.3.

In the following non-normative example, the client instance is indicating that it can redirect (Section 2.5.1.1)the end user to an arbitrary URI and can receive a redirect (Section 2.5.2.1) througha browser request. Note that the client instance does not accept a push-style callback.The pattern of using a redirect for both interaction start and finish is common for web-based client software.

"interact": {    "start": ["redirect"],    "finish": {        "method": "redirect",        "uri": "https://client.example.net/return/123455",        "nonce": "LKLTI25DK82FX4T4QFZC"    }}

In the following non-normative example, the client instance is indicating that it candisplay a user code (Section 2.5.1.3) and direct the end userto an arbitrary URI (Section 2.5.1.1), but it cannot accept a redirect or push-style callback.This pattern is common for devices that have robust display capabilities but expectthe use of a secondary device to facilitate end-user interaction with the AS, suchas a set-top box capable of displaying an interaction URL as a QR code.

"interact": {    "start": ["redirect", "user_code"]}

In the following non-normative example, the client instance is indicating that it cannot start any interaction with the end user but that the AS canpush an interaction finish message (Section 2.5.2.2) whenauthorization from the RO is received asynchronously. This pattern iscommon for scenarios where a service needs to be authorized, but the RO isable to be contacted separately from the GNAP transaction itself, such as through a pushnotification or existing interactive session on a secondary device.

"interact": {    "start": [],    "finish": {        "method": "push",        "uri": "https://client.example.net/return/123455",        "nonce": "LKLTI25DK82FX4T4QFZC"    }}

If all of the following conditions are true, the ASMUST return aninvalid_interaction error (Section 3.6) since the client instance will be unable to complete the request without authorization:

  • The client instance does not provide a suitable interaction mechanism.
  • The AS cannot contact the RO asynchronously.
  • The AS determines that interaction is required.

2.5.1.Start Mode Definitions

If the client instance is capable of starting interaction with the end user, the client instanceindicates this by sending an array of start modes under thestart key.Each interaction start mode has a unique identifying name.Interaction start modes are specified in the array either by a string, which consists of the startmode name on its own, or by a JSON object with the required fieldmode:

mode:

The interaction start mode.REQUIRED.

Interaction start modes defined as objectsMAY define additional parameters to be required in the object.

Thestart array can contain both string-type and object-type modes.

This specification defines the following interaction start modes:

"redirect" (string):

Indicates that the client instance can direct the end user to an arbitrary URI for interaction. SeeSection 2.5.1.1.

"app" (string):

Indicates that the client instance can launch an application on the end user's device for interaction. SeeSection 2.5.1.2.

"user_code" (string):

Indicates that the client instance can communicate a short, human-readable code to the end user for use with a stable URI. SeeSection 2.5.1.3.

"user_code_uri" (string):

Indicates that the client instance can communicate a short, human-readable code to the end user for use with a short, dynamic URI. SeeSection 2.5.1.4.

Additional start modes can be defined in the "GNAP Interaction Start Modes" registry (Section 10.9).

2.5.1.1.Redirect to an Arbitrary URI

If the client instance is capable of directing the end user to a URI definedby the AS at runtime, the client instance indicates this by includingredirect in the array under thestart key. The means by whichthe client instance will activate this URI are out of scope of thisspecification, but common methods include an HTTP redirect,launching a browser on the end user's device, providing a scannableimage encoding, and printing out a URI to an interactiveconsole. While this URI is generally hosted at the AS, the clientinstance can make no assumptions about its contents, composition,or relationship to the grant endpoint URI.

"interact": {  "start": ["redirect"]}

If this interaction mode is supported for this client instance andrequest, the AS returns a redirect interaction response (Section 3.3.1).The client instance manages this interaction method as described inSection 4.1.1.

SeeSection 11.29 for more considerations regarding the use of front-channelcommunication techniques.

2.5.1.2.Open an Application-Specific URI

If the client instance can open a URI associated with an application onthe end user's device, the client instance indicates this by includingappin the array under thestart key. The means by which the client instancedetermines the application to open with this URI are out of scope ofthis specification.

"interact": {  "start": ["app"]}

If this interaction mode is supported for this client instance andrequest, the AS returns an app interaction response with an app URIpayload (Section 3.3.2). The client instance managesthis interaction method as described inSection 4.1.4.

2.5.1.3.Display a Short User Code

If the client instance is capable of displaying or otherwise communicatinga short, human-entered code to the RO, the client instance indicates thisby includinguser_code in the array under thestart key. Thiscode is to be entered at a static URI that does not change atruntime. The client instance has no reasonable means to communicate a dynamicURI to the RO, so this URI is usually communicated out of band to theRO through documentation or other messaging outside of GNAP.While this URI is generally hosted at the AS, the clientinstance can make no assumptions about its contents, composition,or relationship to the grant endpoint URI.

"interact": {    "start": ["user_code"]}

If this interaction mode is supported for this client instance andrequest, the AS returns a user code as specifiedinSection 3.3.3. The client instance manages this interactionmethod as described inSection 4.1.2.

2.5.1.4.Display a Short User Code and URI

If the client instance is capable of displaying or otherwise communicatinga short, human-entered code along with a short, human-entered URI to the RO,the client instance indicates thisby includinguser_code_uri in the array under thestart key. Thiscode is to be entered at the dynamic URL given in the response.While this URL is generally hosted at the AS, the clientinstance can make no assumptions about its contents, composition,or relationship to the grant endpoint URI.

"interact": {    "start": ["user_code_uri"]}

If this interaction mode is supported for this client instance andrequest, the AS returns a user code and interaction URL as specifiedinSection 3.3.4. The client instance manages this interactionmethod as described inSection 4.1.3.

2.5.2.Interaction Finish Methods

If the client instance is capable of receiving a message from the AS indicatingthat the RO has completed their interaction, the client instanceindicates this by sending the following members of an object under thefinish key.

method (string):

The callback method that the AS will use to contact the client instance.REQUIRED.

uri (string):

Indicates the URI that the AS will use to signal the client instance that interaction has completed. This URIMAY be unique per request andMUST be hosted by or accessible to the client instance. This URIMUST be an absolute URI andMUST NOT contain any fragment component. If the client instance needs any state information to tie to the front-channel interaction response, itMUST use a unique callback URI to link to that ongoing state. The allowable URIs and URI patternsMAY be restricted by the AS based on the client instance's presented key information. The callback URISHOULD be presented to the RO during the interaction phase before redirect.REQUIRED forredirect andpush methods.

nonce (string):

Unique ASCII string value to be used in the calculation of the "hash" query parameter sent to the callback URI. It must be sufficiently random to be unguessable by an attacker. ItMUST be generated by the client instance as a unique value for this request.REQUIRED.

hash_method (string):

An identifier of a hash calculation mechanism to be used for the callback hash inSection 4.2.3, as defined in the IANA "Named Information Hash Algorithm Registry"[HASH-ALG]. If absent, the default value issha-256.OPTIONAL.

This specification defines the following values for themethod parameter; additional values can bedefined in the "GNAP Interaction Finish Methods" registry (Section 10.10):

"redirect":

Indicates that the client instance can receive a redirect from the end user's device after interaction with the RO has concluded. SeeSection 2.5.2.1.

"push":

Indicates that the client instance can receive an HTTP POST request from the AS after interaction with the RO has concluded. SeeSection 2.5.2.2.

If interaction finishing is supported for this client instance andrequest, the AS will return a nonce (Section 3.3.5) used by the clientinstance to validate the callback.All interaction finish methodsMUST use this nonce to allow the client to verify the connectionbetween the pending interaction request and the callback. GNAP does this through the use of theinteraction hash, defined inSection 4.2.3.All requests to the callback URIMUST be processed as described inSection 4.2.

All interaction finish methodsMUST require presentation of an interaction reference for continuingthis grant request. This means that the interactionreferenceMUST be returned by the AS andMUST be presented by the client as described inSection 5.1. The means by which the interaction reference is returned to theclient instance are specific to the interaction finish method.

2.5.2.1.Receive an HTTP Callback through the Browser

A finishmethod value ofredirect indicates that the client instancewill expect a request from the RO's browser using the HTTP methodGET as described inSection 4.2.1.

The client instance's URIMUST be protected by HTTPS, behosted on a server local to the RO's browser ("localhost"), oruse an application-specific URI scheme that is loaded on theend user's device.

"interact": {    "finish": {        "method": "redirect",        "uri": "https://client.example.net/return/123455",        "nonce": "LKLTI25DK82FX4T4QFZC"    }}

Requests to the callback URIMUST be processed by the client instance as described inSection 4.2.1.

Since the incoming request to the callback URI is from the RO'sbrowser, this method is usually used when the RO and end user are thesame entity. SeeSection 11.24 for considerations on ensuring the incoming HTTP messagematches the expected context of the request.SeeSection 11.29 for more considerations regarding the use of front-channelcommunication techniques.

2.5.2.2.Receive an HTTP Direct Callback

A finishmethod value ofpush indicates that the client instance willexpect a request from the AS directly using the HTTP method POSTas described inSection 4.2.2.

The client instance's URIMUST be protected by HTTPS, behosted on a server local to the RO's browser ("localhost"), oruse an application-specific URI scheme that is loaded on the end user's device.

"interact": {    "finish": {        "method": "push",        "uri": "https://client.example.net/return/123455",        "nonce": "LKLTI25DK82FX4T4QFZC"    }}

Requests to the callback URIMUST be processed by the client instance as described inSection 4.2.2.

Since the incoming request to the callback URI is from the AS andnot from the RO's browser, this request is not expected to have any sharedsession information from the start method. See Sections11.24 and11.23 formore considerations regarding the use of back-channel and polling mechanisms like this.

2.5.3.Hints

Thehints key is an object describing one or more suggestions from the clientinstance that the AS can use to help drive user interaction.

This specification defines the following property under thehints key:

ui_locales (array of strings):

Indicates the end user's preferred locales that the AS can use during interaction, particularly before the RO has authenticated.OPTIONAL.Section 2.5.3.1

The following subsection details requests for interactionhints. Additional interaction hints can be defined inthe "GNAP Interaction Hints" registry (Section 10.11).

2.5.3.1.Indicate Desired Interaction Locales

If the client instance knows the end user's locale and language preferences, theclient instance can send this information to the AS using theui_locales fieldwith an array of locale strings as defined by[RFC5646].

"interact": {    "hints": {        "ui_locales": ["en-US", "fr-CA"]    }}

If possible, the ASSHOULD use one of the locales in the array, withpreference to the first item in the array supported by the AS. If noneof the given locales are supported, the ASMAY use a default locale.

3.Grant Response

In response to a client instance's request, the AS responds with a JSON objectas the HTTP content. Each possible field is detailed in the subsections below.

continue (object):

Indicates that the client instance can continue the request by making one or more continuation requests.REQUIRED if continuation calls are allowed for this client instance on this grant request. SeeSection 3.1.

access_token (object / array of objects):

A single access token or set of access tokens that the client instance can use to call the RS on behalf of the RO.REQUIRED if an access token is included. SeeSection 3.2.

interact (object):

Indicates that interaction through some set of defined mechanisms needs to take place.REQUIRED if interaction is expected. SeeSection 3.3.

subject (object):

Claims about the RO as known and declared by the AS.REQUIRED if subject information is included. SeeSection 3.4.

instance_id (string):

An identifier this client instance can use to identify itself when making future requests.OPTIONAL. SeeSection 3.5.

error (object or string):

An error code indicating that something has gone wrong.REQUIRED for an error condition. SeeSection 3.6.

Additional fields can be defined by extensions to GNAP in the "GNAP Grant Response Parameters" registry (Section 10.12).

In the following non-normative example, the AS is returning an interaction URI (Section 3.3.1),a callback nonce (Section 3.3.5), and a continuation response (Section 3.1).

NOTE: '\' line wrapping per RFC 8792{    "interact": {        "redirect": "https://server.example.com/interact/4CF492ML\          VMSW9MKMXKHQ",        "finish": "MBDOFXG4Y5CVJCX821LH"    },    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU",        },        "uri": "https://server.example.com/tx"    }}

In the following non-normative example, the AS is returning a bearer access token (Section 3.2.1) with a management URI and a Subject Identifier (Section 3.4) in the form ofan opaque identifier.

{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "flags": ["bearer"],        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        }    },    "subject": {        "sub_ids": [ {          "format": "opaque",          "id": "J2G8G8O4AZ"        } ]    }}

In the following non-normative example, the AS is returning set of Subject Identifiers (Section 3.4),simultaneously as an opaque identifier, an email address, and a decentralized identifier (DID), formatted as a set of Subject Identifiers as defined in[RFC9493].

{    "subject": {        "sub_ids": [ {          "format": "opaque",          "id": "J2G8G8O4AZ"        }, {          "format": "email",          "email": "user@example.com"        }, {          "format": "did",          "url": "did:example:123456"        } ]    }}

The responseMUST be sent as a JSON object in the content of the HTTP response with Content-Typeapplication/json, unless otherwise specified by the specific response (e.g., an empty response with no Content-Type).

The ASMUST include the HTTP Cache-Control response header field[RFC9111] with a value set to "no-store".

3.1.Request Continuation

If the AS determines that the grant request can be continued by theclient instance, the AS responds with thecontinue field. This fieldcontains a JSON object with the following properties.

uri (string):

The URI at which the client instance can make continuation requests. This URIMAY vary per request orMAY be stable at the AS. This URIMUST be an absolute URI. The client instanceMUST use this value exactly as given when making a continuation request (Section 5).REQUIRED.

wait (integer):

The amount of time in integer seconds the client instanceMUST wait after receiving this request continuation response and calling the continuation URI. The valueSHOULD NOT be less than five seconds, and omission of the valueMUST be interpreted as five seconds.RECOMMENDED.

access_token (object):

A unique access token for continuing the request, called the "continuation access token". The value of this propertyMUST be an object in the format specified inSection 3.2.1. This access tokenMUST be bound to the client instance's key used in the request andMUST NOT be a bearer token. As a consequence, theflags array of this access tokenMUST NOT contain the stringbearer, and thekey fieldMUST be omitted. This access tokenMUST NOT have amanage field. The client instanceMUST present the continuation access token in all requests to the continuation URI as described inSection 7.2.REQUIRED.

{    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue",        "wait": 60    }}

This field isREQUIRED if the grant request is in thepending state, asthe field contains the information needed by the client request to continue therequest as described inSection 5. Note that thecontinuation access token is bound to the client instance's key; therefore, theclient instanceMUST sign all continuation requests with its key as describedinSection 7.3 andMUST present the continuation access token in its continuation request.

3.2.Access Tokens

If the AS has successfully granted one or more access tokens to the client instance,the AS responds with theaccess_token field. This field contains either a singleaccess token as described inSection 3.2.1 or an array of access tokensas described inSection 3.2.2.

The client instance uses any access tokens in this response to call the RS asdescribed inSection 7.2.

The grant requestMUST be in theapproved state to include this field in the response.

3.2.1.Single Access Token

If the client instance has requested a single access token and the AS hasgranted that access token, the AS responds with the "access_token"field. The value of this field is an object with the followingproperties.

value (string):

The value of the access token as a string. The value is opaque to the client instance. The valueMUST be limited to thetoken68 character set defined inSection 11.2 of [HTTP] to facilitate transmission over HTTP headers and within other protocols without requiring additional encoding.REQUIRED.

label (string):

The value of thelabel the client instance provided in the associated token request (Section 2.1), if present.REQUIRED for multiple access tokens or if alabel was included in the single access token request;OPTIONAL for a single access token where nolabel was included in the request.

manage (object):

Access information for the token management API for this access token. If provided, the client instanceMAY manage its access token as described inSection 6. This management API is a function of the AS and is separate from the RS the client instance is requesting access to.OPTIONAL.

access (array of objects/strings):

A description of the rights associated with this access token, as defined inSection 8. If included, thisMUST reflect the rights associated with the issued access token. These rightsMAY vary from what was requested by the client instance.REQUIRED.

expires_in (integer):

The number of seconds in which the access will expire. The client instanceMUST NOT use the access token past this time. Note that the access tokenMAY be revoked by the AS or RS at any point prior to its expiration.OPTIONAL.

key (object / string):

The key that the token is bound to, if different from the client instance's presented key. The keyMUST be an object or string in a format described inSection 7.1. The client instanceMUST be able to dereference or process the key information in order to be able to sign subsequent requests using the access token (Section 7.2). When the key is provided by value from the AS, the token shares some security properties with bearer tokens as discussed inSection 11.38. It isRECOMMENDED that keys returned for use with access tokens be key references as described inSection 7.1.1 that the client instance can correlate to its known keys.OPTIONAL.

flags (array of strings):

A set of flags that represent attributes or behaviors of the access token issued by the AS.OPTIONAL.

The value of themanage field is an object with the following properties:

uri (string):
The URI of the token management API for this access token. This URIMUST be an absolute URI. This URIMUST NOT include the value of the access token being managed or the value of the access token used to protect the URI. This URISHOULD be different for each access token issued in a request.REQUIRED.
access_token (object):

A unique access token for continuing the request, called the "token management access token". The value of this propertyMUST be an object in the format specified inSection 3.2.1. This access tokenMUST be bound to the client instance's key used in the request (or its most recent rotation) andMUST NOT be a bearer token. As a consequence, theflags array of this access tokenMUST NOT contain the stringbearer, and thekey fieldMUST be omitted. This access tokenMUST NOT have amanage field. This access tokenMUST NOT have the same value as the token it is managing. The client instanceMUST present the continuation access token in all requests to the continuation URI as described inSection 7.2.REQUIRED.

The values of theflags field defined by this specification are as follows:

"bearer":

Flag indicating whether the token is a bearer token, not bound to a key and proofing mechanism. If thebearer flag is present, the access token is a bearer token, and thekey field in this responseMUST be omitted. SeeSection 11.9 for additional considerations on the use of bearer tokens.

"durable":

Flag indicating a hint of AS behavior on token rotation. If this flag is present, then the client instance can expect a previously issued access token to continue to work after it has been rotated (Section 6.1) or the underlying grant request has been modified (Section 5.3), resulting in the issuance of new access tokens. If this flag is omitted, the client instance can anticipate a given access token could stop working after token rotation or grant request modification. Note that a token flagged asdurable can still expire or be revoked through any normal means.

Flag valuesMUST NOT be included more than once.

Additional flags can be defined by extensions using the "GNAP Access Token Flags" registry (Section 10.4).

If thebearer flag and thekey fieldin this response are omitted, the token is bound to the key used by the client instance (Section 2.3)in its request for access. If thebearer flag is omitted and thekey field is present,the token is bound to the key and proofing mechanism indicated in thekey field.The means by which the AS determines how to bind an access token to a keyother than that presented by the client instance are out of scope for thisspecification, but common practices include pre-registering specific keys in a static fashion.

The client softwareMUST reject any access token where theflags field contains thebearer flagand thekey field is present with any value.

The following non-normative example shows a single access token bound tothe client instance's key used in the initial request. The access token has amanagement URI and has access to three described resources (one using anobject and two described by reference strings).

NOTE: '\' line wrapping per RFC 8792"access_token": {    "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",    "manage": {        "uri": "https://server.example.com/token/PRY5NM33O",        "access_token": {            "value": "B8CDFONP21-4TB8N6.BW7ONM"        }    },    "access": [        {            "type": "photo-api",            "actions": [                "read",                "write",                "dolphin"            ],            "locations": [                "https://server.example.net/",                "https://resource.local/other"            ],            "datatypes": [                "metadata",                "images"            ]        },        "read", "dolphin-metadata"    ]}

The following non-normative example shows a single bearer access tokenwith access to two described resources.

"access_token": {    "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",    "flags": ["bearer"],    "access": [        "finance", "medical"    ]}

If the client instance requested a single access token (Section 2.1.1), the ASMUST NOT respond with the structure for multiple access tokens.

3.2.2.Multiple Access Tokens

If the client instance has requested multiple access tokens and the AS hasgranted at least one of them, the AS responds with the"access_token" field. The value of this field is a JSONarray, the members of which are distinct accesstokens as described inSection 3.2.1.Each objectMUST have a uniquelabel field, corresponding to the token labelschosen by the client instance in the request for multiple access tokens (Section 2.1.2).

In the following non-normative example, two tokens are issued under thenamestoken1 andtoken2, and only the first token has a managementURI associated with it.

NOTE: '\' line wrapping per RFC 8792"access_token": [    {        "label": "token1",        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        },        "access": [ "finance" ]    },    {        "label": "token2",        "value": "UFGLO2FDAFG7VGZZPJ3IZEMN21EVU71FHCARP4J1",        "access": [ "medical" ]    }}

Each access token corresponds to one of the objects in theaccess_token array ofthe client instance's request (Section 2.1.2).

The ASMAY refuse to issue one or more of therequested access tokens for any reason. In such cases, the refused token is omittedfrom the response, and all of the other issued accesstokens are included in the response under their respective requested labels.If the client instance requested multiple access tokens (Section 2.1.2), the ASMUST NOT respond with asingle access token structure, even if only a single access token is granted. In such cases, the ASMUST respondwith a structure for multiple access tokens containing one access token.

"access_token": [    {        "label": "token2",        "value": "8N6BW7OZB8CDFONP219-OS9M2PMHKUR64TBRP1LT0",        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        },        "access": [ "fruits" ]    }]

The parameters of each access token are separate. For example, each access token is expected tohave a unique value and (if present) label, and each access token likely has different access rights associated withit. Each access token could also be bound to different keys with different proofing mechanisms.

3.3.Interaction Modes

If the client instance has indicated a capability to interact with the RO in its request (Section 2.5)and the AS has determined that interaction is bothsupported and necessary, the AS responds to the client instance with any of thefollowing values in theinteract field of the response. There isno preference order for interaction modes in the response,and it is up to the client instance to determine which ones to use. All supportedinteraction methods are included in the sameinteract object.

redirect (string):

Redirect to an arbitrary URI.REQUIRED if theredirect interaction start mode is possible for this request. SeeSection 3.3.1.

app (string):

Launch of an application URI.REQUIRED if theapp interaction start mode is possible for this request. SeeSection 3.3.2.

user_code (string):

Display a short user code.REQUIRED if theuser_code interaction start mode is possible for this request. SeeSection 3.3.3.

user_code_uri (object):

Display a short user code and URI.REQUIRED if theuser_code_uri interaction start mode is possible for this request.Section 3.3.4

finish (string):

A unique ASCII string value provided by the AS as a nonce. This is used by the client instance to verify the callback after interaction is completed.REQUIRED if the interaction finish method requested by the client instance is possible for this request. SeeSection 3.3.5.

expires_in (integer):

The number of integer seconds after which this set of interaction responses will expire and no longer be usable by the client instance. If the interaction methods expire, the clientMAY restart the interaction process for this grant request by sending an update (Section 5.3) with a new interaction request field (Section 2.5).OPTIONAL. If omitted, the interaction response modes returned do not expire butMAY be invalidated by the AS at any time.

Additional interaction mode responses can be defined in the "GNAP Interaction Mode Responses" registry (Section 10.13).

The ASMUST NOT respond with any interaction mode that theclient instance did not indicate in its request, and the ASMUST NOT respond withany interaction mode that the AS does not support. Since interactionresponses include secret or unique information, the ASSHOULDrespond to each interaction mode only once in an ongoing request,particularly if the client instance modifies its request (Section 5.3).

The grant requestMUST be in thepending state to include this field in the response.

3.3.1.Redirection to an Arbitrary URI

If the client instance indicates that it can redirect to an arbitrary URI (Section 2.5.1.1) and the AS supports this mode for the client instance'srequest, the AS responds with the "redirect" field, which isa string containing the URI for the end user to visit. This URIMUST beunique for the request andMUST NOT contain any security-sensitiveinformation such as user identifiers or access tokens.

"interact": {    "redirect": "https://interact.example.com/4CF492MLVMSW9MKMXKHQ"}

The URI returned is a function of the AS, but the URI itselfMAY be completelydistinct from the grant endpoint URI that the client instance uses to request access (Section 2), allowing anAS to separate its user-interaction functionality from its backend securityfunctionality. The AS will need to dereference the specific grantrequest and its information from the URI alone. If the AS does not directly host the functionality accessed throughthe redirect URI, then the means for the interaction functionality to communicatewith the rest of the AS are out of scope for this specification.

The client instance sends the end user to the URI to interact with the AS. Theclient instanceMUST NOT alter the URI in any way. The means for the client instanceto send the end user to this URI are out of scope of this specification,but common methods include an HTTP redirect, launching the systembrowser, displaying a scannable code, or printing out the URI in aninteractive console. See details of the interaction inSection 4.1.1.

3.3.2.Launch of an Application URI

If the client instance indicates that it can launch an application URI (Section 2.5.1.2) andthe AS supports this mode for the client instance's request, the ASresponds with the "app" field, which is a string containing the URIfor the client instance to launch. This URIMUST be unique for the request andMUST NOT contain any security-sensitive information such as user identifiers or access tokens.

"interact": {    "app": "https://app.example.com/launch?tx=4CF492MLV"}

The means for the launched application to communicate with the AS are out ofscope for this specification.

The client instance launches the URI as appropriate on its platform; the means for the client instance to launch this URI are out of scope of thisspecification. The client instanceMUST NOT alter the URI in any way. Theclient instanceMAY attempt to detect if an installed application willservice the URI being sent before attempting to launch theapplication URI. See details of the interaction inSection 4.1.4.

3.3.3.Display of a Short User Code

If the client instance indicates that it candisplay a short, user-typeable code (Section 2.5.1.3)and the AS supports this mode for the client instance'srequest, the AS responds with a "user_code" field. This field is stringcontaining a unique short code that the usercan type into a web page. To facilitate usability, this stringMUST consist only of charactersthat can be easily typed by the end user(such as ASCII letters or numbers) andMUST be processed by the AS in a case-insensitive manner (seeSection 4.1.2).The stringMUST be randomly generatedso as to be unguessable by an attacker within the time it is accepted. The time in which thiscode will be acceptedSHOULD be short lived, such as severalminutes. It isRECOMMENDED that this code be between six and eightcharacters in length.

"interact": {    "user_code": "A1BC3DFF"}

The client instanceMUST communicate the "user_code" value to the end user in somefashion, such as displaying it on a screen or reading it outaudibly. This code is used by the interaction component of the AS as a meansof identifying the pending grant request and does not function as an authentication factor for the RO.

The URI that the end user is intended to enter the code intoMUST be stable,since the client instance is expected to have no means of communicating adynamic URI to the end user at runtime.

As this interaction mode is designed to facilitate interactionvia a secondary device, it is not expected that the client instance redirectthe end user to the URI where the code is entered.If the client instance is capable of communicating ashort arbitrary URI to the end user for use with the user code, the clientinstanceSHOULD instead use the "user_code_uri" mode (Section 2.5.1.4).If the client instance is capable of communicating a long arbitrary URI to the end user,such as through a scannable code, theclient instanceSHOULD use the "redirect" mode (Section 2.5.1.1)for this purpose, instead of or in addition to the user code mode.

See details of the interaction inSection 4.1.2.

3.3.4.Display of a Short User Code and URI

If the client instance indicates that it candisplay a short, user-typeable code (Section 2.5.1.3)and the AS supports this mode for the client instance'srequest, the AS responds with a "user_code_uri"object that contains the following members.

code (string):

A unique short code that the end user can type into a provided URI. To facilitate usability, this stringMUST consist only of characters that can be easily typed by the end user (such as ASCII letters or numbers) andMUST be processed by the AS in a case-insensitive manner (seeSection 4.1.3). The stringMUST be randomly generated so as to be unguessable by an attacker within the time it is accepted. The time in which this code will be acceptedSHOULD be short lived, such as several minutes. It isRECOMMENDED that this code be between six and eight characters in length.REQUIRED.

uri (string):

The interaction URI that the client instance will direct the RO to. This URIMUST be short enough to be communicated to the end user by the client instance. It isRECOMMENDED that this URI be short enough for an end user to type in manually. The URIMUST NOT contain thecode value. This URIMUST be an absolute URI.REQUIRED.

"interact": {    "user_code_uri": {        "code": "A1BC3DFF",        "uri": "https://s.example/device"    }}

The client instanceMUST communicate the "code" to the end user in somefashion, such as displaying it on a screen or reading it outaudibly. This code is used by the interaction component of the AS as a meansof identifying the pending grant request and does not function as anauthentication factor for the RO.

The client instanceMUST also communicate the URI to the end user. Since it is expectedthat the end user will continue interaction on a secondary device,the URI needs to be short enough to allow the end user to type or copy it to a secondarydevice without mistakes.

The URI returned is a function of the AS, but the URI itselfMAY be completelydistinct from the grant endpoint URI that the client instance uses to request access (Section 2), allowing anAS to separate its user-interaction functionality from its backend securityfunctionality. If the AS does not directly host the functionality accessed throughthe given URI, then the means for the interaction functionality to communicatewith the rest of the AS are out of scope for this specification.

See details of the interaction inSection 4.1.2.

3.3.5.Interaction Finish

If the client instance indicates that it can receive a post-interaction redirect or push at a URI (Section 2.5.2)and the AS supports this mode for theclient instance's request, the AS responds with afinish field containing a noncethat the client instance will use in validating the callback as defined inSection 4.2.

"interact": {    "finish": "MBDOFXG4Y5CVJCX821LH"}

When the interaction is completed, the interaction component of the ASMUST contact the client instance using the means defined by the finish methodas described inSection 4.2.

If the AS returns thefinish field, the client instanceMUST NOTcontinue a grant request before it receives the associatedinteraction reference on the callback URI. See details inSection 4.2.

3.4.Returning Subject Information

If information about the RO is requested and the ASgrants the client instance access to that data, the AS returns the approvedinformation in the "subject" response field. The ASMUST return thesubject field only in cases where the AS is sure thatthe RO and the end user are the same party. This can be accomplished through some forms ofinteraction with the RO (Section 4).

This field is an object with the following properties.

sub_ids (array of objects):

An array of Subject Identifiers for the RO, as defined by[RFC9493].REQUIRED if returning Subject Identifiers.

assertions (array of objects):

An array containing assertions as objects, each containing the assertion object described below.REQUIRED if returning assertions.

updated_at (string):

Timestamp as a date string as described in[RFC3339], indicating when the identified account was last updated. The client instanceMAY use this value to determine if it needs to request updated profile information through an identity API. The definition of such an identity API is out of scope for this specification.RECOMMENDED.

Assertion objects contain the following fields:

format (string):

The assertion format. Possible formats are listed inSection 3.4.1. Additional assertion formats can be defined in the "GNAP Assertion Formats" registry (Section 10.6).REQUIRED.

value (string):

The assertion value as the JSON string serialization of the assertion.REQUIRED.

The following non-normative example contains an opaque identifier and an OpenID Connect ID Token:

"subject": {  "sub_ids": [ {    "format": "opaque",    "id": "XUT2MFM1XBIKJKSDU8QM"  } ],  "assertions": [ {    "format": "id_token",    "value": "eyj..."  } ]}

Subject Identifiers returned by the ASSHOULD uniquely identify the RO at theAS. Some forms of Subject Identifiers are opaque to the client instance (such as the subject of anissuer and subject pair), while other forms (such as email address and phone number) areintended to allow the client instance to correlate the identifier with other account informationat the client instance. The client instanceMUST NOT request or use any returned Subject Identifiers for communicationpurposes (seeSection 2.2). That is, a Subject Identifier returned in the format of an email address ora phone number only identifies the RO to the AS and does not indicate that theAS has validated that the represented email address or phone number in the identifieris suitable for communication with the current user. To get such information,the client instanceMUST use an identity protocol to request and receive additional identityclaims. The details of an identity protocol and associated schemaare outside the scope of this specification.

The ASMUST ensure that the returned subject information represents the RO. In most cases,the AS will also ensure that the returned subject information represents the end user authenticatedinteractively at the AS.The ASSHOULD NOT reuse Subject Identifiers for multiple different ROs.

The "sub_ids" and "assertions" response fields are independent of each other. That is, areturned assertionMAY use a different Subject Identifier than other assertions andSubject Identifiers in the response. However, all Subject Identifiers and assertions returnedMUST refer to the same party.

The client instanceMUST interpret all subject information in the context of the AS from which thesubject information is received, as is discussed in Section 6 of[SP80063C]. For example, one AS couldreturn an email identifier of "user@example.com" for one RO, and a different AS could return thatsame email identifier of "user@example.com" for a completely different RO. A client instance talking toboth ASes needs to differentiate between these two accounts by accounting for the AS sourceof each identifier and not assuming that either has a canonical claim on the identifier withoutadditional configuration and trust agreements. Otherwise, a rogue AS could exploit this totake over a targeted account asserted by a different AS.

Extensions to this specificationMAY define additional responseproperties in the "GNAP Subject Information Response Fields" registry (Section 10.14).

The grant requestMUST be in theapproved state to return this field in the response.

SeeSection 11.30 for considerations that the client instance has to make when acceptingand processing assertions from the AS.

3.4.1.Assertion Formats

The following assertion formats are defined in this specification:

id_token:

An OpenID Connect ID Token[OIDC], in JSON Web Token (JWT) compact format as a single string.

saml2:

A SAML 2.0 assertion[SAML2], encoded as a single base64url string with no padding.

3.5.Returning a Dynamically Bound Client Instance Identifier

Many parts of the client instance's request can be passed as either a valueor a reference. The use of a reference in place of a value allowsfor a client instance to optimize requests to the AS.

Some references, such as for the client instance's identity (Section 2.3.1)or the requested resources (Section 8.1), can be managed statically through anadmin console or developer portal provided by the AS or RS. The developerof the client software can include these values in their code for a moreefficient and compact request.

If desired, the ASMAY also generate and return an instance identifierdynamically to the client instance in the response to facilitate multipleinteractions with the same client instance over time. The client instanceSHOULD use thisinstance identifier in future requests in lieu of sending the associated datavalues in theclient field.

Dynamically generated client instance identifiers are string values thatMUST beprotected by the client instance as secrets. Instance identifier valuesMUST be unguessableandMUST NOT contain any information that would compromise any party if revealed. Instance identifier values areopaque to the client instance, and their content is determined by the AS. The instanceidentifierMUST be unique per client instance at the AS.

instance_id (string):

A string value used to represent the information in theclient object that the client instance can use in a future request, as described inSection 2.3.1.OPTIONAL.

The following non-normative example shows an instance identifier alongside an issued access token.

{    "instance_id": "7C7C4AZ9KHRS6X63AJAO",    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0"    }}

3.6.Error Response

If the AS determines that the request cannot be completed for any reason, it responds to the client instance with anerror field in the response message. This field is either an object or a string.

When returned as an object, the object contains the following fields:

code (string):

A single ASCII error code defining the error.The valueMUST be defined in the "GNAP Error Codes" registry (Section 10.15).REQUIRED.

description (string):

A human-readable string description of the error intended for thedeveloper of the client. The value is chosen by the implementation.OPTIONAL.

This specification defines the followingcode values:

"invalid_request":

The request is missing a required parameter, includes an invalid parameter value, or is otherwise malformed.

"invalid_client":

The request was made from a client that was not recognized or allowed by the AS, or the client's signature validation failed.

"invalid_interaction":

The client instance has provided an interaction reference that is incorrect for this request, or the interaction modes in use have expired.

"invalid_flag":

The flag configuration is not valid.

"invalid_rotation":

The token rotation request is not valid.

"key_rotation_not_supported":

The AS does not allow rotation of this access token's key.

"invalid_continuation":

The continuation of the referenced grant could not be processed.

"user_denied":

The RO denied the request.

"request_denied":

The request was denied for an unspecified reason.

"unknown_user":

The user presented in the request is not known to the AS or does not match the user present during interaction.

"unknown_interaction":

The interaction integrity could not be established.

"too_fast":

The client instance did not respect the timeout in the wait response before the next call.

"too_many_attempts":

A limit has been reached in the total number of reasonable attempts. This number is either defined statically or adjusted based on runtime conditions by the AS.

Additional error codes can be defined in the "GNAP Error Codes" registry (Section 10.15).

For example, if the RO denied the request while interacting with the AS,the AS would return the following error when the client instance tries tocontinue the grant request:

{    "error": {        "code": "user_denied",        "description": "The RO denied the request"    }}

Alternatively, the ASMAY choose to only return the error as codes and provide the error as a string. Since thedescription field is not intended to be machine-readable, the following response is considered functionally equivalent to the previous example for the purposes of the client software's understanding:

{    "error": "user_denied"}

If an error state is reached but the grant is in thepending state (and therefore the client instance can continue), the ASMAY include thecontinue field in the response along with theerror, as defined inSection 3.1. This allows the client instance to modify its request for access, potentially leading to prompting the RO again. Other fieldsMUST NOT be included in the response.

4.Determining Authorization and Consent

When the client instance makes its initial request (Section 2) to the AS for delegated access, itis capable of asking for several different kinds of information in response:

When the grant request is in theprocessing state, the AS determines what authorizations andconsents are required to fulfill this requested delegation. The details of how theAS makes this determination are out of scope for this document. However, there are several commonpatterns defined and supported by GNAP for fulfilling these requirements, including informationsent by the client instance, information gathered through the interaction process, and informationsupplied by external parties. An individual AS can define its own policies and processes fordeciding when and how to gather the necessary authorizations and consent and how those are appliedto the grant request.

To facilitate the AS fulfilling this request, the client instance sends information about theactions the client software can take, including:

The client instance can also supply information directly to the AS in its request. The client instance can send several kinds of things, including:

The AS will process this presented information in the context of the client instance's request andcan only trust the information as much as it trusts the presentation and context of that request.If the AS determines that the information presented in the initial request is sufficient for granting the requestedaccess, the ASMAY move the grant request to theapproved state and return resultsimmediately in its response (Section 3) withaccess tokens and subject information.

If the AS determines that additional runtime authorization is required, the AS can either deny therequest outright (if there is no possible recovery) or move the grant request to thependingstate and use a number of means at its disposal to gather that authorization from the appropriate ROs, including:

The process of gathering authorization and consent in GNAP is left deliberately flexible to allow for awide variety of different deployments, interactions, and methodologies.In this process, the AS can gather consent from the RO or apply the RO's policy as necessitated by the access that hasbeen requested. The AS can sometimes determine which RO needs to prompt for consent based on what has been requestedby the client instance, such as a specific RS record, an identified subject, or a request requiring specificaccess such as approval by an administrator. In other cases, the request is applied to whichever RO is present at the time of consent gathering. This pattern is especially prevalent when theend user is sent to the AS for an interactive session, during which the end user takes on the role of the RO. In these cases, the end user is delegating their own access as RO to the client instance.

The client instance can indicate that it is capable of facilitating interaction with the end user,another party, or another piece of software through its interaction start request (Section 2.5.1). Here, theAS usually needs to interact directly withthe end user to determine their identity, determine their status as an RO, and collect their consent. If the AS has determinedthat authorization is required and the AS can support one or more of the requested interaction startmethods, the AS returns the associated interaction start responses (Section 3.3). The clientinstanceSHOULD initiate one or more of these interaction methods (Section 4.1) in order tofacilitate the granting of the request. If more than one interaction start method is available,the means by which the client chooses which methods to follow are out of scope of this specification.

After starting interaction, the client instance can then make a continuation request (Section 5)either in response to a signal indicating the finish of the interaction (Section 4.2), after a time-basedpolling, or through some other method defined by an extension of this specification through the "GNAP Interaction Mode Responses" registry (Section 10.13).

If the grant request is not in theapproved state, theclient instance can repeat the interaction process by sending a grant update request (Section 5.3) with new interaction methods (Section 2.5).

The client instanceMUST use each interaction method once at most if a response can be detected.The ASMUST handle any interact request as a one-time-use mechanism andSHOULD apply suitabletimeouts to any interaction start methods provided, including user codes and redirection URIs.The client instanceSHOULD apply suitable timeouts to any interaction finish method.

In order to support client software deployed in disadvantaged network conditions, the ASMAYallow for processing of the same interaction method multiple times if the AS can determinethat the request is from the same party and the results are idempotent.For example, if a client instance launches a redirect to the AS but does not receive a responsewithin a reasonable time, the client software can launch the redirect again, assuming that it neverreached the AS in the first place. However, if the AS in questionreceives both requests, it could mistakenly process them separately, creating an undefined state for theclient instance. If the AS can determine that both requests come from the same origin or under the same session,and the requests both came before any additional state change to the grant occurs, the AS can reasonablyconclude that the initial response was not received and the same response can be returned to the client instance.

If the AS instead has a means of contacting the RO directly, it coulddo so without involving the client instance in its consent-gathering process. For example, the AS couldpush a notification to a known RO and have the RO approve the pending request asynchronously. These interactionscan be through an interface of the AS itself (such as a hosted web page), through another application (such assomething installed on the RO's device), through a messaging fabric, or any other means.

When interacting with an RO, the AS can use various strategies to determinethe authorization of the requested grant, including:

The AS is also allowed to request authorization from more than one RO, if the AS deems fit. For example, a medicalrecord might need to be released by both an attending nurse and a physician, or both owners of a bank accountneed to sign off on a transfer request. Alternatively, the AS could require N of M possible ROsto approve a given request. In some circumstances, the AS could even determine that the end userpresent during the interaction is not the appropriate ROfor a given request and reach out to the appropriate RO asynchronously.

The RO is also allowed to define an automated policy at the AS to determine which kind of end user can get access to the resource and under which conditions. For instance, such a condition might require the end user to log in and accept the RO's legal provisions. Alternatively, client software could be acting without an end user, and the RO's policy allows issuance of access tokens to specific instances of that client software without human interaction.

While all of these cases are supported by GNAP, the details of theirimplementation and the methods for determining which ROs or related policiesare required for a given request are out of scope for this specification.

4.1.Starting Interaction with the End User

When a grant request is in thepending state, the interaction start methods sent bythe client instance can be used to facilitate interaction with the end user.To initiate an interaction start method indicated by theinteraction start responses (Section 3.3) from the AS, the client instancefollows the steps defined by that interaction start mode. The actions of the client instancerequired for the interaction start modes defined in this specification are describedin the following subsections. Interaction start modes defined in extensions to this specificationMUST define the expected actions of the client software when that interaction start mode is used.

If the client instance does not start an interaction start mode within an AS-determined amount oftime, the ASMUST reject attempts to use the interaction start modes. If the client instance hasalready begun one interaction start mode and the interaction has been successfully completed, the ASMUST reject attempts to use other interactionstart modes. For example, if a user code has been successfully entered for a grant request, the ASwill need to reject requests to an arbitrary redirect URI on the same grant request in order to prevent anattacker from capturing and altering an active authorization process.

4.1.1.Interaction at a Redirected URI

When the end user is directed to an arbitrary URI through the "redirect" mode (Section 3.3.1), the client instance facilitates opening the URI through the end user's web browser.The client instance could launch the URI through the system browser, provide a clickablelink, redirect the user through HTTP response codes, or display the URI in a formthe end user can use to launch, such as a multidimensional barcode. In all cases, the URIis accessed with an HTTP GET request, and the resulting page is assumed to allow direct interactionwith the end user through an HTTP user agent.With this method, it is common (though not required) for the RO to be the same party as the end user, sincethe client instance has to communicate the redirection URI to the end user.

In many cases, the URI indicates a web page hosted at the AS, allowing theAS to authenticate the end user as the RO and interactively provide consent.The URI value is used to identify the grant request being authorized.If the URI cannot be associated with a currently activerequest, the ASMUST display an error to the RO andMUST NOT attemptto redirect the RO back to any client instance, even if a redirect finish method is supplied (Section 2.5.2.1).If the URI is not hosted by the AS directly, the means of communication betweenthe AS and the service provided by this URI are out of scope for this specification.

The client instanceMUST NOT modify the URI when launching it;in particular, the client instanceMUST NOT add any parameters to the URI.The URIMUST be reachable from the end user's browser, thoughthe URIMAY be opened on a separate device from the client instanceitself. The URIMUST be accessible from an HTTP GETrequest, and itMUST be protected by HTTPS, behosted on a server local to the RO's browser ("localhost"), oruse an application-specific URI scheme that is loaded on the end user's device.

4.1.2.Interaction at the Static User Code URI

When the end user is directed to enter a short code through the "user_code" mode (Section 3.3.3), the client instance communicates the user code to the end user anddirects the end user to enter that code at an associated URI.The client instanceMAYformat the user code in such a way as to facilitate memorability and transfer of thecode, so long as this formatting does not alter the value as accepted at the user codeURI. For example, a client instance receiving the user code "A1BC3DFF" could choose todisplay this to the user as "A1BC 3DFF", breaking up the long string into two shorterstrings.

When processing input codes, the ASMUST transform the input string to remove invalid characters.In the above example, the space in between the two parts would be removed upon itsentry into the interactive form at the user code URI. Additionally, the ASMUST treatuser input as case insensitive. For example, if the user inputs the string "a1bc 3DFF", theAS will treat the input the same as "A1BC3DFF". To facilitate this, it isRECOMMENDEDthat the AS use only ASCII letters and numbers as valid characters for the user code.

It isRECOMMENDED that the AS choose from character values that are easily copied and typed without ambiguity.For example, some glyphs have multiple Unicode code points for the same visual character, and the end usercould potentially type a different character than what the AS has returned.For additional considerations of internationalized character strings, see[RFC8264].

This mode is designed to be used when the client instance is not able to communicate or facilitate launchingan arbitrary URI. The associated URI could be statically configured with the client instance orin the client software's documentation. As a consequence, these URIsSHOULD be short.The user code URIMUST be reachable from the end user's browser, thoughthe URI is usually opened on a separate device from the client instanceitself. The URIMUST be accessible from an HTTP GETrequest, and itMUST be protected by HTTPS, behosted on a server local to the RO's browser ("localhost"), oruse an application-specific URI scheme that is loaded on the end user's device.

In many cases, the URI indicates a web page hosted at the AS, allowing theAS to authenticate the end user as the RO and interactively provide consent.The value of the user code is used to identify the grant request being authorized.If the user code cannot be associated with a currently activerequest, the ASMUST display an error to the RO andMUST NOT attemptto redirect the RO back to any client instance, even if a redirect finish method is supplied (Section 2.5.2.1).If the interaction component at the user code URI is not hosted by the AS directly, the means of communication betweenthe AS and this URI, including communication of the user code itself, are out of scope for this specification.

When the RO enters this code at the user code URI,the ASMUST uniquely identify the pending request that the code was associatedwith. If the AS does not recognize the entered code, the interaction componentMUSTdisplay an error to the user. If the AS detects too many unrecognized codeenter attempts, the interaction componentSHOULD display an error to the user indicating too many attempts andMAY take additional actions such as slowing down the input interactions.The user should be warned as such an error state is approached, if possible.

4.1.3.Interaction at a Dynamic User Code URI

When the end user is directed to enter a short code through the "user_code_uri" mode (Section 3.3.4), the client instance communicates the user code and associated URI to the end user anddirects the end user to enter that code at the URI.The client instanceMAYformat the user code in such a way as to facilitate memorability and transfer of thecode, so long as this formatting does not alter the value as accepted at the user codeURI. For example, a client instance receiving the user code "A1BC3DFF" could choose todisplay this to the user as "A1BC 3DFF", breaking up the long string into two shorterstrings.

When processing input codes, the ASMUST transform the input string to remove invalid characters.In the above example, the space in between the two parts would be removed upon itsentry into the interactive form at the user code URI. Additionally, the ASMUST treatuser input as case insensitive. For example, if the user inputs the string "a1bc 3DFF", theAS will treat the input the same as "A1BC3DFF". To facilitate this, it isRECOMMENDEDthat the AS use only ASCII letters and numbers as valid characters for the user code.

This mode is used when the client instance is not able to facilitate launchinga complex arbitrary URI but can communicate arbitrary values like URIs. As a consequence, these URIsSHOULD be short enough to allow the URI to be typed by the end user,such as a total length of 20 characters or fewer.The client instanceMUST NOT modify the URI when communicating it to the end user;in particular the client instanceMUST NOT add any parameters to the URI.The user code URIMUST be reachable from the end user's browser, thoughthe URI is usually be opened on a separate device from the client instanceitself. The URIMUST be accessible from an HTTP GETrequest, and itMUST be protected by HTTPS, behosted on a server local to the RO's browser ("localhost"), oruse an application-specific URI scheme that is loaded on the end user's device.

In many cases, the URI indicates a web page hosted at the AS, allowing theAS to authenticate the end user as the RO and interactively provide consent.The value of the user code is used to identify the grant request being authorized.If the user code cannot be associated with a currently activerequest, the ASMUST display an error to the RO andMUST NOT attemptto redirect the RO back to any client instance, even if a redirect finish method is supplied (Section 2.5.2.1).If the interaction component at the user code URI is not hosted by the AS directly, the means of communication betweenthe AS and this URI, including communication of the user code itself, are out of scope for this specification.

When the RO enters this code at the given URI,the ASMUST uniquely identify the pending request that the code was associatedwith. If the AS does not recognize the entered code, the interaction componentMUSTdisplay an error to the user. If the AS detects too many unrecognized codeenter attempts, the interaction componentSHOULD display an error to the user indicating too many attempts andMAY take additional actions such as slowing down the input interactions.The user should be warned as such an error state is approached, if possible.

4.1.4.Interaction through an Application URI

When the client instance is directed to launch an application through the"app" mode (Section 3.3.2), the client launches theURI as appropriate to the system, such as through a deep link or custom URIscheme registered to a mobile application. The means by which the AS and thelaunched application communicate with each other and perform anyof the required actions are out of scope for this specification.

4.2.Post-Interaction Completion

If an interaction "finish" method (Section 3.3.5) isassociated with the current request, the ASMUST follow the appropriatemethod upon completion of interaction in order to signal the clientinstance to continue, except for some limited error cases discussed below.If a finish method is not available, the ASSHOULD instruct the RO toreturn to the client instance upon completion. In such cases, it is expectedthat the client instance will poll the continuation endpoint as described inSection 5.2.

The ASMUST create an interaction reference and associate thatreference with the current interaction and the underlying pendingrequest. The interaction reference value is an ASCII string consisting of onlyunreserved characters perSection 2.3 of [RFC3986].The interaction reference valueMUST be sufficiently random so as not to beguessable by an attacker. The interaction referenceMUST beone-time-use to prevent interception and replay attacks.

The ASMUST calculate a hash value based on the client instance, AS nonces, and theinteraction reference, as described inSection 4.2.3. The client instance will use this value tovalidate the "finish" call.

All interaction finish methodsMUST define a wayto convey the hash and interaction reference back to the client instance. When aninteraction finish method is used, the client instanceMUST present the interactionreference back to the AS as part of its continuation request (Section 5.1).

Note that in many error cases, such as when the RO has deniedaccess, the "finish" method is still enacted by the AS.This pattern allows the client instance to potentially recover from the errorstate by modifying its request or providing additional information directly to the AS in acontinuation request. The ASMUST NOT follow the "finish" method in thefollowing circumstances:

  • The AS has determined that any URIs involved with the finish method are dangerous or blocked.

  • The AS cannot determine which ongoing grant request is being referenced.

  • The ongoing grant request has been canceled or otherwise blocked.

4.2.1.Completing Interaction with a Browser Redirect to the Callback URI

When using theredirect interaction finish method defined in Sections2.5.2.1 and3.3.5,the AS signals to the client instance that interaction iscomplete and the request can be continued by directing the RO (intheir browser) back to the client instance's redirect URI.

The AS secures this redirect by adding the hash and interactionreference as query parameters to the client instance's redirect URI.

hash:

The interaction hash value as described inSection 4.2.3.REQUIRED.

interact_ref:

The interaction reference generated for this interaction.REQUIRED.

The means of directing the RO to this URI are outside the scopeof this specification, but common options include redirecting theRO from a web page and launching the system browser with thetarget URI. SeeSection 11.19 for considerations onwhich HTTP status code to use when redirecting a request thatpotentially contains credentials.

NOTE: '\' line wrapping per RFC 8792https://client.example.net/return/123455\  ?hash=x-gguKWTj8rQf7d7i3w3UhzvuJ5bpOlKyAlVpLxBffY\  &interact_ref=4IFWWIKYBC2PQ6U56NL1

The client instanceMUST be able to process a request on the URI. If the URI isHTTP, the requestMUST be an HTTP GET.

When receiving the request, the client instanceMUST parse the queryparameters to extract the hash and interaction reference values.The client instanceMUST calculate and validate the hash value as described inSection 4.2.3. If the hash validates, the client instancesends a continuation request to the AS as described inSection 5.1, using the interactionreference value received here. If the hash does not validate, the client instanceMUST NOT send the interaction reference to the AS.

4.2.2.Completing Interaction with a Direct HTTP Request Callback

When using thepush interaction finish method defined in Sections2.5.2.1 and3.3.5,the AS signals to the client instance that interaction iscomplete and the request can be continued by sending an HTTP POSTrequest to the client instance's callback URI.

The HTTP message content is a JSON object consisting of thefollowing two fields:

hash (string):

The interaction hash value as described inSection 4.2.3.REQUIRED.

interact_ref (string):

The interaction reference generated for this interaction.REQUIRED.

POST /push/554321 HTTP/1.1Host: client.example.netContent-Type: application/json{  "hash": "pjdHcrti02HLCwGU3qhUZ3wZXt8IjrV_BtE3oUyOuKNk",  "interact_ref": "4IFWWIKYBC2PQ6U56NL1"}

Since the AS is making an outbound connection to a URI supplied by an outside party (the clientinstance), the ASMUST protect itself against Server-Side Request Forgery (SSRF) attacks when making this call, as discussed inSection 11.34.

When receiving the request, the client instanceMUST parse the JSON objectand validate the hash value as described inSection 4.2.3. If either fails, the client instanceMUST return anunknown_interaction error (Section 3.6). If the hash validates, the client instance sendsa continuation request to the AS as described inSection 5.1, using the interactionreference value received here.

4.2.3.Calculating the Interaction Hash

The "hash" parameter in the request to the client instance's callback URI tiesthe front-channel response to an ongoing request by using valuesknown only to the parties involved. This security mechanism allows the client instance to protect itself againstseveral kinds of session fixation and injection attacks as discussed inSection 11.25. The ASMUSTalways provide this hash, and the client instanceMUST validate the hash when received.

To calculate the "hash" value, the party doing the calculationcreates a hash base string by concatenating the following values in the following orderusing a single newline (0x0A) character to separate them:

  • the "nonce" value sent by the client instance in the interactionfinish field of the initial request (Section 2.5.2)

  • the AS's nonce value from the interaction finish response (Section 3.3.5)

  • the "interact_ref" returned from the AS as part of the interaction finish method (Section 4.2)

  • the grant endpoint URI the client instance used to make its initial request (Section 2)

There is no padding or whitespace before or after any of the linesand no trailing newline character. The following non-normative example shows a constructedhash base string consisting of these four elements.

VJLO6A4CATR0KROMBDOFXG4Y5CVJCX821LH4IFWWIKYB2PQ6U56NL1https://server.example.com/tx

The party then hashes the bytes of the ASCII encoding of this string with the appropriate algorithmbased on the "hash_method" parameter under the "finish" key of the interaction finish request (Section 2.5.2). The resultingbyte array from the hash function is then encoded using URL-Safe base64with no padding[RFC4648]. The resulting string is the hash value.

If provided, the "hash_method" valueMUST be one of the hash name strings defined in theIANA "Named Information Hash Algorithm Registry"[HASH-ALG].If the "hash_method" value is not present in the client instance'srequest, the algorithm defaults to "sha-256".

For example, the "sha-256" hash method consists of hashing the input stringwith the 256-bit SHA2 algorithm. The following is the encoded "sha-256" hash of the hash base string in the example above.

x-gguKWTj8rQf7d7i3w3UhzvuJ5bpOlKyAlVpLxBffY

As another example, the "sha3-512" hash method consists of hashing the input stringwith the 512-bit SHA3 algorithm. The following is the encoded "sha3-512" hash of the hash base string in the example above.

NOTE: '\' line wrapping per RFC 8792pyUkVJSmpqSJMaDYsk5G8WCvgY91l-agUPe1wgn-cc5rUtN69gPI2-S_s-Eswed8iB4\  PJ_a5Hg6DNi7qGgKwSQ

5.Continuing a Grant Request

While it is possible for the AS to return an approved grant response (Section 3) with all theclient instance's requested information (including access tokens (Section 3.2) andsubject information (Section 3.4)) immediately, it's more common that the AS willplace the grant request into thepending state and require communication withthe client instance several times over the lifetime of a grant request.This is often part of facilitating interaction (Section 4), but it couldalso be used to allow the AS and client instance to continue negotiating the parameters ofthe original grant request (Section 2) through modification of the request.

The ability to continue an already-started request allows the client instance to perform severalimportant functions, including presenting additional information from interaction,modifying the initial request, and revoking a grant request in progress.

To enable this ongoing negotiation, the AS provides a continuation API to the client software.The AS returns acontinue fieldin the response (Section 3.1) that contains information the client instance needs toaccess this API, including a URI to accessas well as a special access token to use during the requests, called the "continuation access token".

All requests to the continuation API are protected by a bound continuation access token.The continuation access token is bound to the same key and method the client instance used to makethe initial request (or its most recent rotation). As a consequence,when the client instance makes any calls to the continuation URI, the client instanceMUST presentthe continuation access token as described inSection 7.2 and presentproof of the client instance's key (or its most recent rotation)by signing the request as described inSection 7.3.The ASMUST validate the signature and ensure that it is bound to the appropriate key forthe continuation access token.

Access tokens other than the continuation access tokensMUST NOT be usable for continuationrequests. Conversely, continuation access tokensMUST NOT be usable to make authorized requests toRSs, even if co-located within the AS.

In the following non-normative example, the client instance makes a POST request to a unique URI and signsthe request with HTTP message signatures:

POST /continue/KSKUOMUKM HTTP/1.1Authorization: GNAP 80UPRY5NM33OMUKMKSKUHost: server.example.comContent-Length: 0Signature-Input: sig1=...Signature: sig1=...

The ASMUST be able to tell from the client instance's request which specific ongoing requestis being accessed, using a combination of the continuation URI andthe continuation access token.If the AS cannot determine a single active grant request to map thecontinuation request to, the ASMUST return aninvalid_continuation error (Section 3.6).

In the following non-normative example, the client instance makes a POST request to a stable continuation endpointURI with the interaction reference (Section 5.1),includes the access token, and signs with HTTP message signatures:

POST /continue HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{  "interact_ref": "4IFWWIKYBC2PQ6U56NL1"}

In the following non-normative alternative example, the client instance had been provided a continuation URI unique to this ongoing grant request:

POST /tx/rxgIIEVMBV-BQUO7kxbsp HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP eyJhbGciOiJub25lIiwidHlwIjoiYmFkIn0Signature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{  "interact_ref": "4IFWWIKYBC2PQ6U56NL1"}

In both cases, the AS determines which grant is being asked for based on the URI and continuation access token provided.

If await parameter was included in the continuation response (Section 3.1), theclient instanceMUST NOT call the continuation URI prior to waiting the number ofseconds indicated. If nowait period is indicated, the client instanceMUST NOT poll immediately andSHOULDwait at least 5 seconds. If the client instance does not respect thegiven wait period, the ASMUST return thetoo_fast error (Section 3.6).

The response from the AS is a JSON object of a grant response andMAY contain any of thefields described inSection 3, as described in more detail in thesubsections below.

If the AS determines that the client instance canmake further requests to the continuation API, the ASMUST include a newcontinuation response (Section 3.1).The new continuation responseMUST include a continuation access token as well, andthis tokenSHOULD be a new access token, invalidating the previous access token.If the AS does not return a new continuation response, the client instanceMUST NOT make an additional continuation request. If a client instance does so,the ASMUST return aninvalid_continuation error (Section 3.6).

For continuation functions that require the client instance to send message content, the contentMUST bea JSON object.

For all requests to the grant continuation API, the ASMAY make use of long polling mechanisms such as those discussed in[RFC6202]. That is to say, instead ofreturning the current status immediately, the long polling techniqueallows the AS additional time to process and fulfill the request before returning the HTTP responseto the client instance. For example, when the AS receives a continuation request but thegrant request is in theprocessing state, the AS could wait until the grant request has movedto thepending orapproved state before returning the response message.

5.1.Continuing after a Completed Interaction

When the AS responds to the client instance'sfinish method as inSection 4.2.1, thisresponse includes an interaction reference. The client instanceMUST include that value as the fieldinteract_ref in a POST request to the continuation URI.

POST /continue HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{  "interact_ref": "4IFWWIKYBC2PQ6U56NL1"}

Since the interaction reference is a one-time-use value as described inSection 4.2.1,if the client instance needs to make additional continuation calls after this request, the client instanceMUST NOT include the interaction reference in subsequent calls. If the AS detects a client instancesubmitting an interaction reference when the request is not in thepending state, the ASMUSTreturn atoo_many_attempts error (Section 3.6) andSHOULD invalidatethe ongoing request by moving it to thefinalized state.

If the grant request is in theapproved state, the grant response (Section 3)MAY contain anynewly created access tokens (Section 3.2) ornewly released subject information (Section 3.4). The responseMAY containa new continuation response (Section 3.1) as described above. The responseSHOULD NOT contain any interaction responses (Section 3.3).

If the grant request is in thepending state, the grant response (Section 3)MUST NOT contain access tokens or subject information andMAY contain a new interaction response (Section 3.3) to any interaction methods that have not been exhausted at the AS.

For example, if the request is successful in causing the AS to issue access tokens andrelease opaque subject claims, the response could look like this:

NOTE: '\' line wrapping per RFC 8792{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        }    },    "subject": {        "sub_ids": [ {          "format": "opaque",          "id": "J2G8G8O4AZ"        } ]    }}

With the above example, the client instance cannot make an additional continuation request becauseacontinue field is not included.

In the following non-normative example, the RO has denied the client instance's request, and the AS responds with the following response:

{    "error": "user_denied",    "continue": {        "access_token": {            "value": "33OMUKMKSKU80UPRY5NM"        },        "uri": "https://server.example.com/continue",        "wait": 30    }}

In the preceding example, the AS includes thecontinue field in the response. Therefore, the client instance can continue the grant negotiation process, perhaps modifying the request as discussed inSection 5.3.

5.2.Continuing during Pending Interaction (Polling)

When the client instance does not include afinish parameter, the client instance will often need topoll the AS until the RO has authorized the request. To do so, the client instance makes a POSTrequest to the continuation URI as inSection 5.1 but does notinclude message content.

POST /continue HTTP/1.1Host: server.example.comAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...

If the grant request is in theapproved state, the grant response (Section 3)MAY contain anynewly created access tokens (Section 3.2) ornewly released subject claims (Section 3.4). The responseMAY containa new continuation response (Section 3.1) as described above. If acontinuefield is included, itSHOULD include await field to facilitate a reasonable polling rate bythe client instance. The responseSHOULD NOT contain interaction responses (Section 3.3).

If the grant request is in thepending state, the grant response (Section 3)MUST NOT contain access tokens or subject information andMAY contain a new interaction response (Section 3.3) to any interaction methods that have not been exhausted at the AS.

For example, if the request has not yet been authorized by the RO, the AS could respondby telling the client instance to make another continuation request in the future. In the following non-normative example,a new, unique access token has been issued for the call, which the client instance will use in itsnext continuation request.

{    "continue": {        "access_token": {            "value": "33OMUKMKSKU80UPRY5NM"        },        "uri": "https://server.example.com/continue",        "wait": 30    }}

If the request is successful in causing the AS to issue access tokens andrelease subject information, the response could look like the following non-normative example:

NOTE: '\' line wrapping per RFC 8792{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        }    },    "subject": {        "sub_ids": [ {          "format": "opaque",          "id": "J2G8G8O4AZ"        } ]    }}

SeeSection 11.23 for considerations on polling for continuation without an interactionfinish method.

In error conditions, the AS responds to the client instance with an error code as discussed inSection 3.6.For example, if the client instance has polled too many times before the RO has approved the request, the AS would respond with a message like the following:

{    "error": "too_many_attempts"}

Since this response does not include acontinue field, the client instance cannot continue topoll the AS for additional updates and the grant request isfinalized. If the client instancestill needs access to the resource, it will need to start with a new grant request.

5.3.Modifying an Existing Request

The client instance might need to modify an ongoing request, whether or not tokens have already beenissued or subject information has already been released. In such cases, the client instance makes an HTTP PATCHrequest to the continuation URI and includes any fields it needs to modify. Fieldsthat aren't included in the request are considered unchanged from the original request.

A grant request associated with a modification requestMUST be in theapproved orpending state.When the AS receives a valid modification request, the ASMUST place the grant request into theprocessing state and re-evaluate the authorization in the new context created by the updaterequest, since the extent and context of the request could have changed.

The client instanceMAY include theaccess_token andsubject fields as described in Sections2.1and2.2. Inclusion of these fields override any values in the initial request,whichMAY trigger additional requirements and policies by the AS. For example, if the client instance is asking formore access, the AS could require additional interaction with the RO to gather additional consent.If the client instance is asking for more limited access, the AS could determine that sufficient authorizationhas been granted to the client instance and return the more limited access rights immediately.If the grant request was previously in theapproved state, the AS could decide to remember the larger scale of access rights associatedwith the grant request, allowing the client instance to make subsequent requests of differentsubsets of granted access. The details of this processing are out of scope for this specification,but a one possible approach is as follows:

  1. A client instance requests access toFoo, and this is granted by the RO. This results in an access token:AT1.

  2. The client instance later modifies the grant request to includeFoo andBar together. Since the client instance was previously grantedFoo under this grant request, the RO is prompted to allow the client instance access toFoo andBar together. This results in a new access token:AT2. This access token has access to bothFoo andBar. The rights of the original access tokenAT1 are not modified.

  3. The client instance makes another grant modification to ask only forBar. Since the client instance was previously grantedFoo andBar together under this grant request, the RO is not prompted, and the access toBar is granted in a new access token:AT3. This new access token does not allow access toFoo.

  4. The original access tokenAT1 expires, and the client seeks a new access token to replace it. The client instance makes another grant modification to ask only forFoo. Since the client instance was previously grantedFoo andBar together under this grant request, the RO is not prompted, and the access toFoo is granted in a new access token:AT4. This new access token does not allow access toBar.

All four access tokens are independent of each other and associated with the same underlying grant request. Each of these access tokens could possibly also be rotated using token management, if available. For example, instead of asking for a new token to replaceAT1, the client instance could ask for a refresh ofAT1 using the rotation method of the token management API. This would result in a refreshedAT1 with a different token value and expiration from the originalAT1 but with the same access rights of allowing only access toFoo.

The client instanceMAY include theinteract field as described inSection 2.5.Inclusion of this field indicates that the client instance is capable of driving interaction withthe end user, and this field replaces any values from a previous request. The ASMAY respond to anyof the interaction responses as described inSection 3.3, just like it would to a newrequest.

The client instanceMAY include theuser field as described inSection 2.4 to present new assertionsor information about the end user. The ASSHOULD check that this presented user information isconsistent with any user information previously presented by the client instance or otherwiseassociated with this grant request.

The client instanceMUST NOT include theclient field of the request, since the clientinstance is assumed not to have changed. Modification of client instance information, includingrotation of keys associated with the client instance, is outside thescope of this specification.

The client instanceMUST NOT include post-interaction responses such as those described inSection 5.1.

Modification requestsMUST NOT alter previously issued access tokens. Instead, any accesstokens issued from a continuation are considered new, separate access tokens. The ASMAY revoke previously issued access tokens after a modification has occurred.

If the modified request can be granted immediately by the AS (the grant request is in theapproved state),the grant response (Section 3)MAY contain any newly created access tokens (Section 3.2) ornewly released subject claims (Section 3.4). The responseMAY containa new continuation response (Section 3.1) as described above. If interactioncan occur, the responseSHOULD contain interaction responses (Section 3.3) as well.

For example, a client instance initially requests a set of resources using references:

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "read", "write"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.example.net/return/123455",            "nonce": "LKLTI25DK82FX4T4QFZC"        }    },    "client": "987YHGRT56789IOLK"}

Access is granted by the RO, and a token is issued by the AS.In its final response, the AS includes acontinue field, which includesa separate access token for accessing the continuation API:

{    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue",        "wait": 30    },    "access_token": {        "value": "RP1LT0-OS9M2P_R64TB",        "access": [            "read", "write"        ]    }}

Thiscontinue field allows the client instance to make an eventual continuation call.Some time later, the client instance realizes that it no longer needs"write" access and therefore modifies its ongoing request, here asking for just "read" accessinstead of both "read" and "write" as before.

PATCH /continue HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "read"        ]    }    ...}

The AS replaces the previousaccess from the first request, allowing the AS todetermine if any previously granted consent already applies. In this case, the AS woulddetermine that reducing the breadth of the requested access means that new accesstokens can be issued to the client instance without additional interaction or consent. The AS would likely revoke previously issued access tokensthat had the greater access rights associated with them, unless they had been issuedwith thedurable flag.

{    "continue": {        "access_token": {            "value": "M33OMUK80UPRY5NMKSKU"        },        "uri": "https://server.example.com/continue",        "wait": 30    },    "access_token": {        "value": "0EVKC7-2ZKwZM_6N760",        "access": [            "read"        ]    }}

As another example, the client instance initially requests read-only access but laterneeds to step up its access. The initial request could look like the following HTTP message:

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "read"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.example.net/return/123455",            "nonce": "LKLTI25DK82FX4T4QFZC"        }    },    "client": "987YHGRT56789IOLK"}

Access is granted by the RO, and a token is issued by the AS.In its final response, the AS includes acontinue field:

{    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue",        "wait": 30    },    "access_token": {        "value": "RP1LT0-OS9M2P_R64TB",        "access": [            "read"        ]    }}

This allows the client instance to make an eventual continuation call. The client instance later realizes that it nowneeds "write" access in addition to the "read" access. Since this is an expansion of whatit asked for previously, the client instance also includes a new interaction field in case the AS needsto interact with the RO again to gather additional authorization. Note that the client instance'snonce and callback are different from the initial request. Since the original callback wasalready used in the initial exchange and the callback is intended for one-time use, a new oneneeds to be included in order to use the callback again.

PATCH /continue HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "read", "write"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.example.net/return/654321",            "nonce": "K82FX4T4LKLTI25DQFZC"        }    }}

From here, the AS can determine that the client instance is asking for more than it was previously granted,but since the client instance has also provided a mechanism to interact with the RO, the AS can use thatto gather the additional consent. The protocol continues as it would with a new request.Since the old access tokens are good for a subset of the rights requested here, theAS might decide to not revoke them. However, any access tokens granted after this updateprocess are new access tokens and do not modify the rights of existing access tokens.

5.4.Revoking a Grant Request

If the client instance wishes to cancel an ongoing grant request and place it into thefinalizedstate, the client instance makes anHTTP DELETE request to the continuation URI.

DELETE /continue HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...

If the request is successfully revoked, the AS responds with HTTP status code 204 (No Content).The ASSHOULD revoke all associated access tokens, if possible. The ASSHOULD disable alltoken rotation and other token management functions on such access tokens, if possible.Once the grant request is in thefinalized state, itMUST NOT be moved to any other state.

If the request is not revoked, the AS responds with aninvalid_continuation error (Section 3.6).

6.Token Management

If an access token response includes themanage field asdescribed inSection 3.2.1, the client instanceMAY callthis URI to manage the access token with the rotate and revoke actions defined inthe following subsections. Other actions are undefined by thisspecification.

{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "flags": ["bearer"],        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        }    }}

The token management access token issued under themanage field is used to protectall calls to the token management API.The client instanceMUST present proof of the key associated with the tokenalong with the value of the token management access token.

The ASMUST validate the proof and ensure that it is associated with thetoken management access token.

The ASMUST uniquely identify the token being managed from the token management URI,the token management access token, or a combination of both.

6.1.Rotating the Access Token Value

If the client instance has an access token and that access token expires, theclient instance might want to rotate the access token to a new value without expiration.Rotating an access token consists of issuing a new access token in place of anexisting access token, with the same rights and properties as the original token,apart from an updated token value and expiration time.

To rotate an access token, the client instance makes an HTTP POST to the token management URIwith no message content,sending the access token in the authorization header as described inSection 7.2 and signing the requestwith the appropriate key.

POST /token/PRY5NM33O HTTP/1.1Host: server.example.comAuthorization: GNAP B8CDFONP21-4TB8N6.BW7ONMSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...

The client instance cannot request to alter the access rightsassociated with the access token during a rotation request. To get an access token with differentaccess rights for this grant request, the client instance has to call the continuation API's update functionality (Section 5.3)to get a new access token. The client instance can also create a new grant requestwith the required access rights.

The AS validates that the token management access token presented is associated with the managementURI, that the AS issued the token to the given client instance, and thatthe presented key is the correct key for the token management access token. The AS determineswhich access token is being rotated from the token management URI, the token management access token, or both.

If the token is validated and the key is appropriate for therequest, the ASMUST invalidate the current access token value associatedwith this URI, if possible. Note that stateless access tokens can make proactiverevocation difficult within a system; seeSection 11.32.

For successful rotations, the AS responds with an HTTP status code 200 (OK) with JSON-formatted message content consisting of the rotated access tokenin theaccess_token field described inSection 3.2.1. The value of theaccess tokenMUST NOT be the same as the current value of the accesstoken used to access the management API. The responseMUST include anaccess token management URI, and the value of this URIMAY be differentfrom the URI used by the client instance to make the rotation call. The client instanceMUST use this new URI to manage the rotated access token.

The access rights in theaccess array for the rotated access tokenMUSTbe included in the response andMUST be the sameas the token before rotation.

NOTE: '\' line wrapping per RFC 8792{    "access_token": {        "value": "FP6A8H6HY37MH13CK76LBZ6Y1UADG6VEUPEER5H2",        "manage": {            "uri": "https://server.example.com/token/PRY5NM33O",            "access_token": {                "value": "B8CDFONP21-4TB8N6.BW7ONM"            }        },        "expires_in": 3600,        "access": [            {                "type": "photo-api",                "actions": [                    "read",                    "write",                    "dolphin"                ],                "locations": [                    "https://server.example.net/",                    "https://resource.local/other"                ],                "datatypes": [                    "metadata",                    "images"                ]            },            "read", "dolphin-metadata"        ]    }}

If the AS is unable or unwilling to rotate the value of the access token, the AS responds with aninvalid_rotation error (Section 3.6). Upon receiving such an error, the client instanceMUST consider the access token to not have changed its state.

6.1.1.Binding a New Key to the Rotated Access Token

If the client instance wishes to bind a new presentation key to an access token, the clientinstanceMUST present both the new key and the proof of previous key material in the access token rotation request.The client instance makes an HTTP POST as a JSON object with the following field:

key:

The new key value or reference in the format described inSection 7.1. Note that keys passed by value are always public keys.REQUIRED when doing key rotation.

The proofing method and parameters for the new keyMUST be the same as those established for theprevious key.

The client instanceMUST prove possession of both the currently bound key and the newly requestedkey simultaneously in the rotation request. Specifically, the signature from the previous keyMUSTcover the value or reference of the new key, and the signature of the new keyMUST cover thesignature value of the old key. Themeans of doing so vary depending on the proofing method in use. For example, the HTTP messagesignatures proofing method uses multiple signatures in the request as described inSection 7.3.1.1. This is shown in the following example.

POST /token/PRY5NM33O HTTP/1.1Host: server.example.comAuthorization: GNAP B8CDFONP21-4TB8N6.BW7ONMSignature-Input: \  sig1=("@method" "@target-uri" "content-digest" \        "authorization"),\  sig2=("@method" "@target-uri" "content-digest" \        "authorization" "signature";key="sig1" \        "signature-input";key="sig1")Signature: sig1=..., sig2=...Content-Digest: sha-256=...{    "key": {        "proof": "httpsig",        "jwk": {            "kty": "RSA",            "e": "AQAB",            "kid": "xyz-2",            "alg": "RS256",            "n": "kOB5rR4Jv0GMeLaY6_It_r3ORwdf8ci_JtffXyaSx8xY..."        }    }}

Failure to present the appropriate proof of either the new key or the previous key for the access token, as defined by the proofing method,MUST result in aninvalid_rotation error code from the AS (Section 3.6).

An attempt to change the proofing method or parameters, including an attempt to rotate the key of a bearer token (which has no key),MUST result in aninvalid_rotation error code returned from the AS (Section 3.6).

If the AS does not allow rotation of the access token's key for any reason, including but not limited to lack of permission for this client instance or lack of capability by the AS, the ASMUST return akey_rotation_not_supported error code (Section 3.6).

6.2.Revoking the Access Token

If the client instance wishes to revoke the access token proactively, such as whena user indicates to the client instance that they no longer wish for it to haveaccess or the client instance application detects that it is being uninstalled,the client instance can use the token management URI to indicate to the AS thatthe ASSHOULD invalidate the access token for all purposes.

The client instance makes an HTTP DELETE request to the token managementURI, presenting the access token and signing the request withthe appropriate key.

DELETE /token/PRY5NM33O HTTP/1.1Host: server.example.comAuthorization: GNAP B8CDFONP21-4TB8N6.BW7ONMSignature-Input: sig1=...Signature: sig1=...

If the key presented is associated with the token (or the client instance, inthe case of a bearer token), the ASMUST invalidate the access token, ifpossible, and return an HTTP response code 204.

204 No Content

Though the ASMAY revoke an access token at any time forany reason, the token management function is specifically for the client instance's use.If the access token has already expired or has been revoked through othermeans, the ASSHOULD honor the revocation request tothe token management URI as valid, since the end result is that the token is still not usable.

7.Securing Requests from the Client Instance

In GNAP, the client instance secures its requests to an AS and RS by presenting an accesstoken, proof of a key that it possesses (aka, a "key proof"), or both an access token andkey proof together.

7.1.Key Formats

Several different places in GNAP require the presentation of key materialby value or by reference. Key material sent by value is sent using a JSON object with several fields described in this section.

All keys are associated with a specific key proofing method.The proofing method associated with the keyis indicated using theproof field of the key object.

proof (string or object):

The form of proof that the client instance will use when presenting the key. The valid values of this field and the processing requirements for each are detailed inSection 7.3.REQUIRED.

A key presented by valueMUST be a public key andMUST be presented in only onesupported format, as discussed inSection 11.35. Note thatwhile most formats present the full value of the public key, someformats present a value cryptographically derived from the public key. Seeadditional discussion of the presentation of public keys inSection 11.7.

jwk (object):

The public key and its properties represented as a JSON Web Key (JWK)[RFC7517]. A JWKMUST contain thealg (Algorithm) andkid (Key ID) parameters. Thealg parameterMUST NOT be "none". Thex5c (X.509 Certificate Chain) parameterMAY be used to provide the X.509 representation of the provided public key.OPTIONAL.

cert (string):

The Privacy-Enhanced Mail (PEM) serialized value of the certificate used to sign the request, with optional internal whitespace per[RFC7468]. The PEM header and footer are optionally removed.OPTIONAL.

cert#S256 (string):

The certificate thumbprint calculated as per MTLS for OAuth[RFC8705] in base64url encoding. Note that this format does not include the full public key.OPTIONAL.

Additional key formats can be defined in the "GNAP Key Formats" registry (Section 10.17).

The following non-normative example shows a single key presented in two different formats. The example key is intended to be used with the HTTP message signatures proofing mechanism (Section 7.3.1), as indicated by thehttpsig value of theproof field.

As a JWK:

"key": {    "proof": "httpsig",    "jwk": {        "kty": "RSA",        "e": "AQAB",        "kid": "xyz-1",        "alg": "RS256",        "n": "kOB5rR4Jv0GMeLaY6_It_r3ORwdf8ci_JtffXyaSx8xY..."    }}

As a certificate in PEM format:

"key": {    "proof": "httpsig",    "cert": "MIIEHDCCAwSgAwIBAgIBATANBgkqhkiG9w0BAQsFA..."}

When the key is presented in GNAP, proof of this key materialMUST be used to bind the request, the nature of which varies withthe location in the protocol where the key is used. For a key used as part of a client instance's initial requestinSection 2.3, the key value represents the client instance's public key, andproof of that keyMUST be presented in that request. For a key used as part of anaccess token response inSection 3.2.1, the proof of that keyMUSTbe used when the client instance later presents the access token to the RS.

7.1.1.Key References

Keys in GNAP can also be passed by reference such that the party receivingthe reference will be able to determine the appropriate keying material foruse in that part of the protocol. A key reference is a single opaque string.

    "key": "S-P4XJQ_RYJCRTSU1.63N3E"

Keys referenced in this mannerMAY be shared symmetric keys. See the additional considerations for symmetric keys inSection 11.7.The key referenceMUST NOT contain any unencrypted private or shared symmetric key information.

Keys referenced in this mannerMUST be bound to a single proofing mechanism.

The means of dereferencing this reference to a key value and proofing mechanism are out of scope for this specification.Commonly, key references are created by the AS and do not necessarily needto be understood by the client. These types of key references are aninternal reference to the AS, such as an identifier of a record in a database.In other applications, it can be useful to use key references that are resolvableby both clients and the AS, which could be accomplished by a client publishinga public key at a URI, for example. For interoperability, this method could later be describedas an extension, but doing so is out of scope for this specification.

7.1.2.Key Protection

The security of GNAP relies on the cryptographic security of the keys themselves.When symmetric keys are used in GNAP, a key management system or secure key derivation mechanismMUST be used to supply the keys. Symmetric keysMUST NOT be a human-memorable password or a value derived from one. Symmetric keysMUST NOT be passed by value from the client instance to the AS.

Additional security considerations apply when rotating keys (seeSection 11.22).

7.2.Presenting Access Tokens

Access tokens are issued to client instances in GNAP to allow the client instance to makean authorized call to an API.The method the client instance uses to send an access token depends on whetherthe token is bound to a key and, if so, which proofing method is associatedwith the key. This information is conveyed by thekey parameter and thebearer flag in the access token response structure (Section 3.2.1).

If theflags field does not contain thebearer flag and thekey is absent, the access tokenMUST be sent using the same key and proofing mechanism that the client instance usedin its initial request (or its most recent rotation).

If theflags field does not contain thebearer flag and thekey value is an object asdescribed inSection 7.1, the access tokenMUST be sent using the key and proofingmechanism defined by the value of theproof field within the key object.

The access tokenMUST be sent using the HTTP Authorization request header field andthe "GNAP" authorization scheme along with a key proof as described inSection 7.3for the key bound to the access token. For example, an access token bound using HTTP message signatures would be sent as follows:

NOTE: '\' line wrapping per RFC 8792GET /stuff HTTP/1.1Host: resource.example.comAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=("@method" "@target-uri" "authorization")\  ;created=1618884473;keyid="gnap-rsa";nonce="NAOEJF12ER2";tag="gnap"Signature: sig1=:FQ+EjWqc38uLFByKa5y+c4WyYYwCTGUhidWKfr5L1Cha8FiPEw\  DxG7nWttpBLS/B6VLfkZJogPbclySs9MDIsAIJwHnzlcJjwXWR2lfvm2z3X7EkJHm\  Zp4SmyKOS34luAiKR1xwf32NYFolHmZf/SbHZJuWvQuS4U33C+BbsXz8MflFH1Dht\  H/C1E5i244gSbdLCPxzABc/Q0NHVSLo1qaouYIvnxXB8OT3K7mwWjsLh1GC5vFThb\  3XQ363r6f0OPRa4qWHhubR/d/J/lNOjbBdjq9AJ69oqNJ+A2XT+ZCrVasEJE0OBvD\  auQoiywhb8BMB7+PEINsPk5/8UvaNxbw==:

If theflags field contains thebearer flag, the access token is a bearer tokenthatMUST be sent using the Authorization request header field method defined in[RFC6750].

Authorization: Bearer OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0

TheForm-Encoded Body Parameter andURI Query Parameter methods of[RFC6750]MUST NOTbe used for GNAP access tokens.

7.3.Proving Possession of a Key with a Request

Any keys presented by the client instance to the AS or RSMUST be validated aspart of the request in which they are presented. The type of bindingused is indicated by theproof parameter of the key object inSection 7.1.Key proofing methods are specified either by a string, which consists of the key proofingmethod name on its own, or by a JSON object with the required fieldmethod:

method:

The name of the key proofing method to be used.REQUIRED.

Individual methods defined as objectsMAY define additional parameters as members in this object.

Values for themethod defined by this specification are as follows:

"httpsig" (string or object):

HTTP message signing. SeeSection 7.3.1.

"mtls" (string):

MTLS certificate verification. SeeSection 7.3.2.

"jwsd" (string):

A detached JWS signature header. SeeSection 7.3.3.

"jws" (string):

Attached JWS Payload. SeeSection 7.3.4.

Additional proofing methods can be defined in the "GNAP Key Proofing Methods" registry (Section 10.16).

Proofing methodsMAY be defined as both an object and a string. For example, thehttpsig method can be specified as anobject with its parameters explicitly declared, such as:

{    "proof": {        "method": "httpsig",        "alg": "ecdsa-p384-sha384",        "content-digest-alg": "sha-256"    }}

Thehttpsig method also defines default behavior when it is passed as a string form,using the signature algorithm specified by the associated keymaterial and the content digest is calculated using sha-256. This configuration can be selectedusing the following shortened form:

{    "proof": "httpsig"}

All key binding methods used by this specificationMUST cover all relevant portionsof the request, including anything that would change the nature of the request, to allowfor secure validation of the request. Relevant aspects includethe URI being called, the HTTP method being used, any relevant HTTP headers andvalues, and the HTTP message content itself. The verifier of the signed messageMUST validate all components of the signed message to ensure that nothinghas been tampered with or substituted in a way that would change the nature ofthe request. Definitions of key binding methodsMUST enumerate how theserequirements are fulfilled.

When a key proofing mechanism is bound to an access token, the key being presentedMUSTbe the key associated with the access token, and the access tokenMUST be coveredby the signature method of the proofing mechanism.

The key binding methods in this sectionMAY be used by othercomponents making calls as part of GNAP, such as the extensions allowing theRS to make calls to the AS defined in[GNAP-RS]. To facilitate this extended use,"signer" and "verifier" are used as generic terms in the subsections below.In the core functions of GNAP specified in this document, the "signer" is theclient instance, and the "verifier" is the AS (for grant requests) or RS (forresource requests), as appropriate.

When used for delegation in GNAP, these key binding mechanisms allowthe AS to ensure that the keys presented by the client instance in the initial request are incontrol of the party calling any follow-up or continuation requests. To facilitatethis requirement, the continuation response (Section 3.1) includesan access token bound to the client instance's key (Section 2.3), and that key (or its most recent rotation)MUST be proved in all continuation requests(Section 5). Token management requests (Section 6) are similarly boundto either the access token's own key or, in the case of bearer tokens, the client instance's key.

In the following subsections, unless otherwise noted, theRS256 JSON Object Signing and Encryption (JOSE) signature algorithm (defined inSection 3.3 of [RFC7518]) is appliedusing the following RSA key (presented here in JWK format):

NOTE: '\' line wrapping per RFC 8792{    "kid": "gnap-rsa",    "p": "xS4-YbQ0SgrsmcA7xDzZKuVNxJe3pCYwdAe6efSy4hdDgF9-vhC5gjaRk\        i1wWuERSMW4Tv44l5HNrL-Bbj_nCJxr_HAOaesDiPn2PnywwEfg3Nv95Nn-\        eilhqXRaW-tJKEMjDHu_fmJBeemHNZI412gBnXdGzDVo22dvYoxd6GM",    "kty": "RSA",    "q": "rVdcT_uy-CD0GKVLGpEGRR7k4JO6Tktc8MEHkC6NIFXihk_6vAIOCzCD6\        LMovMinOYttpRndKoGTNdJfWlDFDScAs8C5n2y1STCQPRximBY-bw39-aZq\        JXMxOLyPjzuVgiTOCBIvLD6-8-mvFjXZk_eefD0at6mQ5qV3U1jZt88",    "d": "FHlhdTF0ozTliDxMBffT6aJVKZKmbbFJOVNten9c3lXKB3ux3NAb_D2dB\        7inp9EV23oWrDspFtvCvD9dZrXgRKMHofkEpo_SSvBZfgtH-OTkbY_TqtPF\        FLPKAw0JX5cFPnn4Q2xE4n-dQ7tpRCKl59vZLHBrHShr90zqzFp0AKXU5fj\        b1gC9LPwsFA2Fd7KXmI1drQQEVq9R-o18Pnn4BGQNQNjO_VkcJTiBmEIVT_\        KJRPdpVJAmbgnYWafL_hAfeb_dK8p85yurEVF8nCK5oO3EPrqB7IL4UqaEn\        5Sl3u0j8x5or-xrrAoNz-gdOv7ONfZY6NFoa-3f8q9wBAHUuQ",    "e": "AQAB",    "qi": "ogpNEkDKg22Rj9cDV_-PJBZaXMk66Fp557RT1tafIuqJRHEufSOYnsto\        bWPJ0gHxv1gVJw3gm-zYvV-wTMNgr2wVsBSezSJjPSjxWZtmT2z68W1DuvK\        kZy15vz7Jd85hmDlriGcXNCoFEUsGLWkpHH9RwPIzguUHWmTt8y0oXyI",    "dp": "dvCKGI2G7RLh3WyjoJ_Dr6hZ3LhXweB3YcY3qdD9BnxZ71mrLiMQg4c_\        EBnwqCETN_5sStn2cRc2JXnvLP3G8t7IFKHTT_i_TSTacJ7uT04MSa053Y3\        RfwbvLjRNPR0UKAE3ZxROUoIaVNuU_6-QMf8-2ilUv2GIOrCN87gP_Vk",    "alg": "RS256",    "dq": "iMZmELaKgT9_W_MRT-UfDWtTLeFjIGRW8aFeVmZk9R7Pnyt8rNzyN-IQ\        M40ql8u8J6vc2GmQGfokLlPQ6XLSCY68_xkTXrhoU1f-eDntkhP7L6XawSK\        Onv5F2H7wyBQ75HUmHTg8AK2B_vRlMyFKjXbVlzKf4kvqChSGEz4IjQ",    "n": "hYOJ-XOKISdMMShn_G4W9m20mT0VWtQBsmBBkI2cmRt4Ai8BfYdHsFzAt\        YKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8IkZ8NMwSrcUIBZGYX\        jHpwjzvfGvXH_5KJlnR3_uRUp4Z4Ujk2bCaKegDn11V2vxE41hqaPUnhRZx\        e0jRETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo-uv4BC0\        bunS0K3bA_3UgVp7zBlQFoFnLTO2uWp_muLEWGl67gBq9MO3brKXfGhi3kO\        zywzwPTuq-cVQDyEN7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQ"}

Key proofing methodsSHOULD define a mechanism to allow the rotation of keys discussedinSection 6.1.1. Key rotation mechanismsMUST define a way for presentingproof of two keys simultaneously with the following attributes:

  • The value of or reference to the new key materialMUST be signed by the existing key. Generally speaking, this amounts to using the existing key to sign the content of the message that contains the new key.

  • The signature of the old keyMUST be signed by the new key. Generally speaking, this means including the signature value of the old key under the coverage of the new key.

7.3.1.HTTP Message Signatures

This method is indicated by the method valuehttpsig and can be declared in either objectform or string form.

When the proofing method is specified in object form, the following parameters are defined:

alg:

The HTTP signature algorithm, from the "HTTP Signature Algorithms" registry.REQUIRED.

content-digest-alg:

The algorithm used for the Content-Digest field, used to protect the content when present in the message.REQUIRED.

This example uses the Elliptic Curve Digital Signature Algorithm (ECDSA) signing algorithm over the P384 curve and the SHA-512 hashingalgorithm for the content digest.

{    "proof": {        "method": "httpsig",        "alg": "ecdsa-p384-sha384",        "content-digest-alg": "sha-512"    }}

When the proofing method is specified in string form, the signing algorithmMUST be derived from thekey material (such as using the JWS algorithm in a JWK formatted key), and the content digestalgorithmMUST besha-256.

{    "proof": "httpsig"}

When using this method, the signer creates an HTTP message signature as described in[RFC9421]. The covered components of the signatureMUST include thefollowing:

"@method":

The method used in the HTTP request.

"@target-uri":

The full request URI of the HTTP request.

When the message contains request content, the covered componentsMUST also include the following:

"content-digest":

The Content-Digest header as defined in[RFC9530]. When the request message has content, the signerMUST calculate this field value and include the field in the request. The verifierMUST validate this field value.REQUIRED when the message request contains message content.

When the request is bound to an access token, the covered componentsMUST also include the following:

"authorization":

The Authorization header used to present the access token as discussed inSection 7.2.

Other message componentsMAY also be included.

The signerMUST include thetag signature parameter with the valuegnap, and the verifierMUST verify that the parameter exists with this value. The signerMUST include thecreated signature parameter with a timestamp of when the signature was created, and the verifierMUST ensure that the creation timestamp is sufficiently close to the current time given expected network delay and clock skew. The signerSHOULD include thenonce parameter with a unique and unguessable value. When included, the verifierMUST determine that the nonce value is unique within a reasonably short time period such as several minutes.

If the signer's key presented is a JWK, thekeyid parameter of the signatureMUST be setto thekid value of the JWK, and the signing algorithm usedMUST be the JWSalgorithm denoted by the key'salg field of the JWK.

The explicitalg signature parameterMUST NOT be included in the signature, since the algorithm will be derived from either the key material or theproof value.

In the following non-normative example, the message content is a JSON object:

NOTE: '\' line wrapping per RFC 8792{    "access_token": {        "access": [            "dolphin-metadata"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.foo/callback",            "nonce": "VJLO6A4CAYLBXHTR0KRO"        }    },    "client": {      "key": {        "proof": "httpsig",        "jwk": {            "kid": "gnap-rsa",            "kty": "RSA",            "e": "AQAB",            "alg": "PS512",            "n": "hYOJ-XOKISdMMShn_G4W9m20mT0VWtQBsmBBkI2cmRt4Ai8Bf\  YdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8IkZ8NMwSrcUIBZG\  YXjHpwjzvfGvXH_5KJlnR3_uRUp4Z4Ujk2bCaKegDn11V2vxE41hqaPUnhRZxe0jR\  ETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo-uv4BC0bunS0K3bA_\  3UgVp7zBlQFoFnLTO2uWp_muLEWGl67gBq9MO3brKXfGhi3kOzywzwPTuq-cVQDyE\  N7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQ"        }      }      "display": {        "name": "My Client Display Name",        "uri": "https://client.foo/"      },    }}

This content is hashed for the Content-Digest header usingsha-256 into the following encoded value:

sha-256=:q2XBmzRDCREcS2nWo/6LYwYyjrlN1bRfv+HKLbeGAGg=:

The HTTP message signature input string is calculated to be the following:

NOTE: '\' line wrapping per RFC 8792"@method": POST"@target-uri": https://server.example.com/gnap"content-digest": \  sha-256=:q2XBmzRDCREcS2nWo/6LYwYyjrlN1bRfv+HKLbeGAGg=:"content-length": 988"content-type": application/json"@signature-params": ("@method" "@target-uri" "content-digest" \  "content-length" "content-type");created=1618884473\  ;keyid="gnap-rsa";nonce="NAOEJF12ER2";tag="gnap"

This leads to the following full HTTP message request:

NOTE: '\' line wrapping per RFC 8792POST /gnap HTTP/1.1Host: server.example.comContent-Type: application/jsonContent-Length: 988Content-Digest: sha-256=:q2XBmzRDCREcS2nWo/6LYwYyjrlN1bRfv+HKLbeGAG\  g=:Signature-Input: sig1=("@method" "@target-uri" "content-digest" \  "content-length" "content-type");created=1618884473\  ;keyid="gnap-rsa";nonce="NAOEJF12ER2";tag="gnap"Signature: sig1=:c2uwTa6ok3iHZsaRKl1ediKlgd5cCAYztbym68XgX8gSOgK0Bt\  +zLJ19oGjSAHDjJxX2gXP2iR6lh9bLMTfPzbFVn4Eh+5UlceP+0Z5mES7v0R1+eHe\  OqBl0YlYKaSQ11YT7n+cwPnCSdv/6+62m5zwXEEftnBeA1ECorfTuPtau/yrTYEvD\  9A/JqR2h9VzAE17kSlSSsDHYA6ohsFqcRJavX29duPZDfYgkZa76u7hJ23yVxoUpu\  2J+7VUdedN/72N3u3/z2dC8vQXbzCPTOiLru12lb6vnBZoDbUGsRR/zHPauxhj9T+\  218o5+tgwYXw17othJSxIIOZ9PkIgz4g==:{    "access_token": {        "access": [            "dolphin-metadata"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.foo/callback",            "nonce": "VJLO6A4CAYLBXHTR0KRO"        }    },    "client": {      "key": {        "proof": "httpsig",        "jwk": {            "kid": "gnap-rsa",            "kty": "RSA",            "e": "AQAB",            "alg": "PS512",            "n": "hYOJ-XOKISdMMShn_G4W9m20mT0VWtQBsmBBkI2cmRt4Ai8Bf\  YdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8IkZ8NMwSrcUIBZG\  YXjHpwjzvfGvXH_5KJlnR3_uRUp4Z4Ujk2bCaKegDn11V2vxE41hqaPUnhRZxe0jR\  ETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo-uv4BC0bunS0K3bA_\  3UgVp7zBlQFoFnLTO2uWp_muLEWGl67gBq9MO3brKXfGhi3kOzywzwPTuq-cVQDyE\  N7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQ"        }      }      "display": {        "name": "My Client Display Name",        "uri": "https://client.foo/"      },    }}

The verifierMUST ensure that the signature covers all required message components.If the HTTP message includes content, the verifierMUSTcalculate and verify the value of theContent-Digest header. The verifierMUST validatethe signature against the expected key of the signer.

A received messageMAY include multiple signatures, each with its own label. The verifierMUST examine all included signatures until it finds (at least) one that is acceptable according to its policy and meets the requirements in this section.

7.3.1.1.Key Rotation Using HTTP Message Signatures

When rotating a key using HTTP message signatures, the message, which includes the new public keyvalue or reference, is first signed with the old key following all of the requirements inSection 7.3.1.The message is then signed again with the new key by following all of the requirements inSection 7.3.1 again,with the following additional requirements:

  • The covered componentsMUST include the Signature and Signature-Input values from the signature generated with the old key.

  • The tag valueMUST begnap-rotate.

For example, the following request to the token management endpoint for rotating a token valuecontains the new key in the request. The message is first signed using the old key,and the resulting signature is placed in "old-key":

NOTE: '\' line wrapping per RFC 8792POST /token/PRY5NM33 HTTP/1.1Host: server.example.comAuthorization: GNAP 4398.34-12-asvDa.aContent-Digest: sha-512=:Fb/A5vnawhuuJ5xk2RjGrbbxr6cvinZqd4+JPY85u/\  JNyTlmRmCOtyVhZ1Oz/cSS4tsYen6fzpCwizy6UQxNBQ==:Signature-Input: old-key=("@method" "@target-uri" "content-digest" \  "authorization");created=1618884475;keyid="test-key-ecc-p256"\  ;tag="gnap"Signature: old-key=:vN4IKYsJl2RLFe+tYEm4dHM4R4BToqx5D2FfH4ge5WOkgxo\  dI2QRrjB8rysvoSEGvAfiVJOWsGcPD1lU639Amw==:{    "key": {        "proof": "httpsig",        "jwk": {            "kty": "RSA",            "e": "AQAB",            "kid": "xyz-2",            "alg": "RS256",            "n": "kOB5rR4Jv0GMeLaY6_It_r3ORwdf8ci_JtffXyaSx8xY..."        }    }}

The signer then creates a new signature using the new key, adding the signatureinput and value to the signature base.

NOTE: '\' line wrapping per RFC 8792"@method": POST"@target-uri": https://server.example.com/token/PRY5NM33"content-digest": sha-512=:Fb/A5vnawhuuJ5xk2RjGrbbxr6cvinZqd4+JPY85\  u/JNyTlmRmCOtyVhZ1Oz/cSS4tsYen6fzpCwizy6UQxNBQ==:"authorization": GNAP 4398.34-12-asvDa.a"signature";key="old-key": :YdDJjDn2Sq8FR82e5IcOLWmmf6wILoswlnRcz+n\  M+e8xjFDpWS2YmiMYDqUdri2UiJsZx63T1z7As9Kl6HTGkQ==:"signature-input";key="old-key": ("@method" "@target-uri" \  "content-digest" "authorization");created=1618884475\  ;keyid="test-key-ecc-p256";tag="gnap""@signature-params": ("@method" "@target-uri" "content-digest" \  "authorization" "signature";key="old-key" "signature-input"\  ;key="old-key");created=1618884480;keyid="xyz-2"  ;tag="gnap-rotate"

This signature is then added to the message:

NOTE: '\' line wrapping per RFC 8792POST /token/PRY5NM33 HTTP/1.1Host: server.example.comAuthorization: GNAP 4398.34-12-asvDa.aContent-Digest: sha-512=:Fb/A5vnawhuuJ5xk2RjGrbbxr6cvinZqd4+JPY85u/\  JNyTlmRmCOtyVhZ1Oz/cSS4tsYen6fzpCwizy6UQxNBQ==:Signature-Input: old-key=("@method" "@target-uri" "content-digest" \    "authorization");created=1618884475;keyid="test-key-ecc-p256"\    ;tag="gnap", \  new-key=("@method" "@target-uri" "content-digest" \    "authorization" "signature";key="old-key" "signature-input"\    ;key="old-key");created=1618884480;keyid="xyz-2"    ;tag="gnap-rotate"Signature: old-key=:vN4IKYsJl2RLFe+tYEm4dHM4R4BToqx5D2FfH4ge5WOkgxo\    dI2QRrjB8rysvoSEGvAfiVJOWsGcPD1lU639Amw==:, \  new-key=:VWUExXQ0geWeTUKhCfDT7WJyT++OHSVbfPA1ukW0o7mmstdbvIz9iOuH\    DRFzRBm0MQPFVMpLDFXQdE3vi2SL3ZjzcX2qLwzAtyRB9+RsV2caAA80A5ZGMoo\    gUsKPk4FFDN7KRUZ0vT9Mo9ycx9Dq/996TOWtAmq5z0YUYEwwn+T6+NcW8rFtms\    s1ZfXG0EoAfV6ve25p+x40Y1rvDHsfkakTRB4J8jWVDybSe39tjIKQBo3uicDVw\    twewBMNidIa+66iF3pWj8w9RSb0cncEgvbkHgASqaZeXmxxG4gM8p1HH9v/OqQT\    Oggm5gTWmCQs4oxEmWsfTOxefunfh3X+Qw==:{    "key": {        "proof": "httpsig",        "jwk": {            "kty": "RSA",            "e": "AQAB",            "kid": "xyz-2",            "alg": "RS256",            "n": "kOB5rR4Jv0GMeLaY6_It_r3ORwdf8ci_JtffXyaSx8xY..."        }    }}

The verifierMUST validate both signatures before processing the request for key rotation.

7.3.2.Mutual TLS

This method is indicated by the method valuemtls in string form.

{    "proof": "mtls"}

The signer presents its TLS client certificate during TLS negotiation with the verifier.

In the following non-normative example, the certificate is communicated to the applicationthrough the Client-Cert header field from a TLS reverse proxy as per[RFC9440], leadingto the following full HTTP request message:

POST /gnap HTTP/1.1Host: server.example.comContent-Type: application/joseContent-Length: 1567Client-Cert: \  :MIIC6jCCAdKgAwIBAgIGAXjw74xPMA0GCSqGSIb3DQEBCwUAMDYxNDAyBgNVBAMM\  K05JWU15QmpzRGp5QkM5UDUzN0Q2SVR6a3BEOE50UmppOXlhcEV6QzY2bVEwHhcN\  MjEwNDIwMjAxODU0WhcNMjIwMjE0MjAxODU0WjA2MTQwMgYDVQQDDCtOSVlNeUJq\  c0RqeUJDOVA1MzdENklUemtwRDhOdFJqaTl5YXBFekM2Nm1RMIIBIjANBgkqhkiG\  9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhYOJ+XOKISdMMShn/G4W9m20mT0VWtQBsmBB\  kI2cmRt4Ai8BfYdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8I\  kZ8NMwSrcUIBZGYXjHpwjzvfGvXH/5KJlnR3/uRUp4Z4Ujk2bCaKegDn11V2vxE4\  1hqaPUnhRZxe0jRETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo+\  uv4BC0bunS0K3bA/3UgVp7zBlQFoFnLTO2uWp/muLEWGl67gBq9MO3brKXfGhi3k\  OzywzwPTuq+cVQDyEN7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQIDAQABMA0GCSqG\  SIb3DQEBCwUAA4IBAQBnYFK0eYHy+hVf2D58usj39lhL5znb/q9G35GBd/XsWfCE\  wHuLOSZSUmG71bZtrOcx0ptle9bp2kKl4HlSTTfbtpuG5onSa3swRNhtKtUy5NH9\  W/FLViKWfoPS3kwoEpC1XqKY6l7evoTCtS+kTQRSrCe4vbNprCAZRxz6z1nEeCgu\  NMk38yTRvx8ihZpVOuU+Ih+dOtVe/ex5IAPYxlQsvtfhsUZqc7IyCcy72WHnRHlU\  fn3pJm0S5270+Yls3Iv6h3oBAP19i906UjiUTNH3g0xMW+V4uLxgyckt4wD4Mlyv\  jnaQ7Z3sR6EsXMocAbXHIAJhwKdtU/fLgdwL5vtx:{    "access_token": {        "access": [            "dolphin-metadata"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.foo/callback",            "nonce": "VJLO6A4CAYLBXHTR0KRO"        }    },    "client": {      "key": {        "proof": "mtls",        "cert": "MIIC6jCCAdKgAwIBAgIGAXjw74xPMA0GCSqGSIb3DQEBCwUAMD\  YxNDAyBgNVBAMMK05JWU15QmpzRGp5QkM5UDUzN0Q2SVR6a3BEOE50UmppOXlhcEV\  6QzY2bVEwHhcNMjEwNDIwMjAxODU0WhcNMjIwMjE0MjAxODU0WjA2MTQwMgYDVQQD\  DCtOSVlNeUJqc0RqeUJDOVA1MzdENklUemtwRDhOdFJqaTl5YXBFekM2Nm1RMIIBI\  jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhYOJ+XOKISdMMShn/G4W9m20mT\  0VWtQBsmBBkI2cmRt4Ai8BfYdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8\  KowlyVy8IkZ8NMwSrcUIBZGYXjHpwjzvfGvXH/5KJlnR3/uRUp4Z4Ujk2bCaKegDn\  11V2vxE41hqaPUnhRZxe0jRETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDad\  z8BkPo+uv4BC0bunS0K3bA/3UgVp7zBlQFoFnLTO2uWp/muLEWGl67gBq9MO3brKX\  fGhi3kOzywzwPTuq+cVQDyEN7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQIDAQABMA0\  GCSqGSIb3DQEBCwUAA4IBAQBnYFK0eYHy+hVf2D58usj39lhL5znb/q9G35GBd/Xs\  WfCEwHuLOSZSUmG71bZtrOcx0ptle9bp2kKl4HlSTTfbtpuG5onSa3swRNhtKtUy5\  NH9W/FLViKWfoPS3kwoEpC1XqKY6l7evoTCtS+kTQRSrCe4vbNprCAZRxz6z1nEeC\  guNMk38yTRvx8ihZpVOuU+Ih+dOtVe/ex5IAPYxlQsvtfhsUZqc7IyCcy72WHnRHl\  Ufn3pJm0S5270+Yls3Iv6h3oBAP19i906UjiUTNH3g0xMW+V4uLxgyckt4wD4Mlyv\  jnaQ7Z3sR6EsXMocAbXHIAJhwKdtU/fLgdwL5vtx"      }      "display": {        "name": "My Client Display Name",        "uri": "https://client.foo/"      },    },    "subject": {        "formats": ["iss_sub", "opaque"]    }}

The verifier compares the TLS client certificate presented duringMTLS negotiation to the expected key of the signer. Since theTLS connection covers the entire message, there are no additionalrequirements to check.

Note that in many instances, the verifier will not do a full certificate chain validation of the presented TLS client certificate, as the means of trust for this certificate could be in something other than a PKI system, such as a static registration or trust-on-first-use. See Sections11.3 and11.4 for some additional considerations for this key proofing method.

7.3.2.1.Key Rotation Using MTLS

Since it is not possible to present two client authenticated certificates to a MTLSconnection simultaneously, dynamic key rotation for this proofing method is not defined.Instead, key rotation for MTLS-based client instances is expected to be managed throughdeployment practices, as discussed inSection 11.4.

7.3.3.Detached JWS

This method is indicated by the method valuejwsd in string form.

{    "proof": "jwsd"}

The signer creates a JSON Web Signature (JWS)[RFC7515] object as follows.

To protect the request, the JOSE header of the signature contains the followingclaims:

kid (string):

The key identifier.REQUIRED if the key is presented in JWK format. ThisMUST be the value of thekid field of the key.

alg (string):

The algorithm used to sign the request. The algorithmMUST be appropriate to the key presented.If the key is presented as a JWK, thisMUST be equal to thealg parameter of the key. The algorithmMUST NOT benone.REQUIRED.

typ (string):

The type header, value "gnap-binding-jwsd".REQUIRED.

htm (string):

The HTTP method used to make this request, as a case-sensitive ASCII string. Note that most public HTTP methods are in uppercase ASCII by convention.REQUIRED.

uri (string):

The HTTP URI used for this request. This valueMUST be an absolute URI, including all path and query components and no fragment components.REQUIRED.

created (integer):

A timestamp of when the signature was created, in integer seconds since UNIX Epoch.REQUIRED.

When the request is bound to an access token, the JOSE headerMUST also include the following:

ath (string):

The hash of the access token. The valueMUST be theresult of base64url encoding (with no padding) the SHA-256 digestof the ASCII encoding of the associated access token's value.REQUIRED.

If the HTTP request has content (such as an HTTP POST or PUT method),the payload of the JWS object is the base64url encoding (without padding)of the SHA-256 digest of the bytes of the content.If the request being made does not have content (such asan HTTP GET, OPTIONS, or DELETE method), the JWS signature iscalculated over an empty payload.

The signer presents the signed object in compact form[RFC7515] in the Detached-JWS header field.

In the following non-normative example, the JOSE header contains the following parameters:

{    "alg": "RS256",    "kid": "gnap-rsa",    "uri": "https://server.example.com/gnap",    "htm": "POST",    "typ": "gnap-binding-jwsd",    "created": 1618884475}

The request content is the following JSON object:

NOTE: '\' line wrapping per RFC 8792{    "access_token": {        "access": [            "dolphin-metadata"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.foo/callback",            "nonce": "VJLO6A4CAYLBXHTR0KRO"        }    },    "client": {      "key": {        "proof": "jwsd",        "jwk": {            "kid": "gnap-rsa",            "kty": "RSA",            "e": "AQAB",            "alg": "RS256",            "n": "hYOJ-XOKISdMMShn_G4W9m20mT0VWtQBsmBBkI2cmRt4Ai8Bf\  YdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8IkZ8NMwSrcUIBZG\  YXjHpwjzvfGvXH_5KJlnR3_uRUp4Z4Ujk2bCaKegDn11V2vxE41hqaPUnhRZxe0jR\  ETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo-uv4BC0bunS0K3bA_\  3UgVp7zBlQFoFnLTO2uWp_muLEWGl67gBq9MO3brKXfGhi3kOzywzwPTuq-cVQDyE\  N7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQ"        }      }      "display": {        "name": "My Client Display Name",        "uri": "https://client.foo/"      },    }}

This is hashed to the following base64-encoded value:

PGiVuOZUcN1tRtUS6tx2b4cBgw9mPgXG3IPB3wY7ctc

This leads to the following full HTTP request message:

NOTE: '\' line wrapping per RFC 8792POST /gnap HTTP/1.1Host: server.example.comContent-Type: application/jsonContent-Length: 983Detached-JWS: eyJhbGciOiJSUzI1NiIsImNyZWF0ZWQiOjE2MTg4ODQ0NzUsImh0b\  SI6IlBPU1QiLCJraWQiOiJnbmFwLXJzYSIsInR5cCI6ImduYXAtYmluZGluZytqd3\  NkIiwidXJpIjoiaHR0cHM6Ly9zZXJ2ZXIuZXhhbXBsZS5jb20vZ25hcCJ9.PGiVuO\  ZUcN1tRtUS6tx2b4cBgw9mPgXG3IPB3wY7ctc.fUq-SV-A1iFN2MwCRW_yolVtT2_\  TZA2h5YeXUoi5F2Q2iToC0Tc4drYFOSHIX68knd68RUA7yHqCVP-ZQEd6aL32H69e\  9zuMiw6O_s4TBKB3vDOvwrhYtDH6fX2hP70cQoO-47OwbqP-ifkrvI3hVgMX9TfjV\  eKNwnhoNnw3vbu7SNKeqJEbbwZfpESaGepS52xNBlDNMYBQQXxM9OqKJaXffzLFEl\  -Xe0UnfolVtBraz3aPrPy1C6a4uT7wLda3PaTOVtgysxzii3oJWpuz0WP5kRujzDF\  wX_EOzW0jsjCSkL-PXaKSpZgEjNjKDMg9irSxUISt1C1T6q3SzRgfuQ{    "access_token": {        "access": [            "dolphin-metadata"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.foo/callback",            "nonce": "VJLO6A4CAYLBXHTR0KRO"        }    },    "client": {      "key": {        "proof": "jwsd",        "jwk": {            "kid": "gnap-rsa",            "kty": "RSA",            "e": "AQAB",            "alg": "RS256",            "n": "hYOJ-XOKISdMMShn_G4W9m20mT0VWtQBsmBBkI2cmRt4Ai8Bf\  YdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8IkZ8NMwSrcUIBZG\  YXjHpwjzvfGvXH_5KJlnR3_uRUp4Z4Ujk2bCaKegDn11V2vxE41hqaPUnhRZxe0jR\  ETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo-uv4BC0bunS0K3bA_\  3UgVp7zBlQFoFnLTO2uWp_muLEWGl67gBq9MO3brKXfGhi3kOzywzwPTuq-cVQDyE\  N7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQ"        }      }      "display": {        "name": "My Client Display Name",        "uri": "https://client.foo/"      },    }}

When the verifier receives the Detached-JWS header, itMUST parse andvalidate the JWS object. The signatureMUST be validated against theexpected key of the signer. If the HTTP message request containscontent, the verifierMUST calculate the hash of the content just asthe signer does, with no normalization or transformation of the request.All required fieldsMUST be present,and their valuesMUST be valid. All fieldsMUST match the corresponding portions of the HTTPmessage. For example, thehtm field of the JWS header has to be the same as the HTTP verb used in the request.

Note that this proofing method depends on a specific cryptographic algorithm, SHA-256, in two ways: 1) theath hash algorithm is hardcoded and 2) the payload of the detached/attached signature is computed using a hardcoded hash. A future version of this document may address crypto-agility for both these uses by replacing ath with a new header that upgrades the algorithm and possibly defining a new JWS header that indicates the HTTP content's hash method.

7.3.3.1.Key Rotation Using Detached JWS

When rotating a key using detached JWS, the message, which includes the new public key value orreference, is first signed with the old key as described above using a JWS object withtyp header value"gnap-binding-rotation-jwsd". The value of the JWS object is then taken as the payload of a new JWSobject, to be signed by the new key using the parameters above.

The value of the new JWS object is sent in the Detached-JWS header.

7.3.4.Attached JWS

This method is indicated by the method valuejws in string form.

{    "proof": "jws"}

The signer creates a JWS[RFC7515] object as follows.

To protect the request, the JWS header contains the following claims:

kid (string):

The key identifier.REQUIRED if the key is presented in JWK format. ThisMUST be the value of thekid field of the key.

alg (string):

The algorithm used to sign the request.MUST be appropriate to the key presented.If the key is presented as a JWK, thisMUST be equal to thealg parameter of the key.MUST NOT benone.REQUIRED.

typ (string):

The type header, value "gnap-binding-jws".REQUIRED.

htm (string):

The HTTP method used to make this request, as a case-sensitive ASCII string. (Note that most public HTTP methods are in uppercase.)REQUIRED.

uri (string):

The HTTP URI used for this request, including all path and query components and no fragment components.REQUIRED.

created (integer):

A timestamp of when the signature was created, in integer seconds since UNIX Epoch.REQUIRED.

When the request is bound to an access token, the JOSE headerMUST also include the following:

ath (string):

The hash of the access token. The valueMUST be theresult of base64url encoding (with no padding) the SHA-256 digestof the ASCII encoding of the associated access token's value.REQUIRED.

If the HTTP request has content (such as an HTTP POST or PUT method),the payload of the JWS object is the JSON serialized content of the request, andthe object is signed according to JWS and serialized into compact form[RFC7515].The signer presents the JWS as the content of the request along with acontent type ofapplication/jose. The verifierMUST extract the payload of the JWS and treat it as the request contentfor further processing.

If the request being made does not have content (such asan HTTP GET, OPTIONS, or DELETE method), the JWS signature iscalculated over an empty payload and passed in theDetached-JWSheader as described inSection 7.3.3.

In the following non-normative example, the JOSE header contains the following parameters:

{    "alg": "RS256",    "kid": "gnap-rsa",    "uri": "https://server.example.com/gnap",    "htm": "POST",    "typ": "gnap-binding-jws",    "created": 1618884475}

The request content, used as the JWS Payload, is the following JSON object:

NOTE: '\' line wrapping per RFC 8792{    "access_token": {        "access": [            "dolphin-metadata"        ]    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.foo/callback",            "nonce": "VJLO6A4CAYLBXHTR0KRO"        }    },    "client": {      "key": {        "proof": "jws",        "jwk": {            "kid": "gnap-rsa",            "kty": "RSA",            "e": "AQAB",            "alg": "RS256",            "n": "hYOJ-XOKISdMMShn_G4W9m20mT0VWtQBsmBBkI2cmRt4Ai8Bf\  YdHsFzAtYKOjpBR1RpKpJmVKxIGNy0g6Z3ad2XYsh8KowlyVy8IkZ8NMwSrcUIBZG\  YXjHpwjzvfGvXH_5KJlnR3_uRUp4Z4Ujk2bCaKegDn11V2vxE41hqaPUnhRZxe0jR\  ETddzsE3mu1SK8dTCROjwUl14mUNo8iTrTm4n0qDadz8BkPo-uv4BC0bunS0K3bA_\  3UgVp7zBlQFoFnLTO2uWp_muLEWGl67gBq9MO3brKXfGhi3kOzywzwPTuq-cVQDyE\  N7aL0SxCb3Hc4IdqDaMg8qHUyObpPitDQ"        }      }      "display": {        "name": "My Client Display Name",        "uri": "https://client.foo/"      },    },    "subject": {        "formats": ["iss_sub", "opaque"]    }}

This leads to the following full HTTP request message:

NOTE: '\' line wrapping per RFC 8792POST /gnap HTTP/1.1Host: server.example.comContent-Type: application/joseContent-Length: 1047eyJhbGciOiJSUzI1NiIsImNyZWF0ZWQiOjE2MTg4ODQ0NzUsImh0bSI6IlBPU1QiLCJ\raWQiOiJnbmFwLXJzYSIsInR5cCI6ImduYXAtYmluZGluZytqd3NkIiwidXJpIjoiaH\R0cHM6Ly9zZXJ2ZXIuZXhhbXBsZS5jb20vZ25hcCJ9.CnsKICAgICJhY2Nlc3NfdG9r\ZW4iOiB7CiAgICAgICAgImFjY2VzcyI6IFsKICAgICAgICAgICAgImRvbHBoaW4tbWV\0YWRhdGEiCiAgICAgICAgXQogICAgfSwKICAgICJpbnRlcmFjdCI6IHsKICAgICAgIC\Aic3RhcnQiOiBbInJlZGlyZWN0Il0sCiAgICAgICAgImZpbmlzaCI6IHsKICAgICAgI\CAgICAgIm1ldGhvZCI6ICJyZWRpcmVjdCIsCiAgICAgICAgICAgICJ1cmkiOiAiaHR0\cHM6Ly9jbGllbnQuZm9vL2NhbGxiYWNrIiwKICAgICAgICAgICAgIm5vbmNlIjogIlZ\KTE82QTRDQVlMQlhIVFIwS1JPIgogICAgICAgIH0KICAgIH0sCiAgICAiY2xpZW50Ij\ogewogICAgICAicHJvb2YiOiAiandzIiwKICAgICAgImtleSI6IHsKICAgICAgICAia\ndrIjogewogICAgICAgICAgICAia2lkIjogImduYXAtcnNhIiwKICAgICAgICAgICAg\Imt0eSI6ICJSU0EiLAogICAgICAgICAgICAiZSI6ICJBUUFCIiwKICAgICAgICAgICA\gImFsZyI6ICJSUzI1NiIsCiAgICAgICAgICAgICJuIjogImhZT0otWE9LSVNkTU1TaG\5fRzRXOW0yMG1UMFZXdFFCc21CQmtJMmNtUnQ0QWk4QmZZZEhzRnpBdFlLT2pwQlIxU\nBLcEptVkt4SUdOeTBnNlozYWQyWFlzaDhLb3dseVZ5OElrWjhOTXdTcmNVSUJaR1lY\akhwd2p6dmZHdlhIXzVLSmxuUjNfdVJVcDRaNFVqazJiQ2FLZWdEbjExVjJ2eEU0MWh\xYVBVbmhSWnhlMGpSRVRkZHpzRTNtdTFTSzhkVENST2p3VWwxNG1VTm84aVRyVG00bj\BxRGFkejhCa1BvLXV2NEJDMGJ1blMwSzNiQV8zVWdWcDd6QmxRRm9GbkxUTzJ1V3Bfb\XVMRVdHbDY3Z0JxOU1PM2JyS1hmR2hpM2tPenl3endQVHVxLWNWUUR5RU43YUwwU3hD\YjNIYzRJZHFEYU1nOHFIVXlPYnBQaXREUSIKICAgICAgICB9CiAgICAgIH0KICAgICA\gImRpc3BsYXkiOiB7CiAgICAgICAgIm5hbWUiOiAiTXkgQ2xpZW50IERpc3BsYXkgTm\FtZSIsCiAgICAgICAgInVyaSI6ICJodHRwczovL2NsaWVudC5mb28vIgogICAgICB9L\AogICAgfSwKICAgICJzdWJqZWN0IjogewogICAgICAgICJmb3JtYXRzIjogWyJpc3Nf\c3ViIiwgIm9wYXF1ZSJdCiAgICB9Cn0K.MwNoVMQp5hVxI0mCs9LlOUdFtkDXaA1_eT\vOXq7DOGrtDKH7q4vP2xUq3fH2jRAZqnobo0WdPP3eM3NH5QUjW8pa6_QpwdIWkK7r-\u_52puE0lPBp7J4U2w4l9gIbg8iknsmWmXeY5F6wiGT8ptfuEYGgmloAJd9LIeNvD3U\LW2h2dz1Pn2eDnbyvgB0Ugae0BoZB4f69fKWj8Z9wvTIjk1LZJN1PcL7_zT8Lrlic9a\PyzT7Q9ovkd1s-4whE7TrnGUzFc5mgWUn_gsOpsP5mIIljoEEv-FqOW2RyNYulOZl0Q\8EnnDHV_vPzrHlUarbGg4YffgtwkQhdK72-JOxYQ

When the verifier receives an attached JWS request, itMUST parse andvalidate the JWS object. The signatureMUST be validated against theexpected key of the signer. All required fieldsMUST be present,and their valuesMUST be valid. All fieldsMUST match the corresponding portions of the HTTPmessage. For example, thehtm field of the JWS header has to be the same as the HTTP verbused in the request.

Note that this proofing method depends on a specific cryptographic algorithm, SHA-256, in two ways:theath hash algorithm is hardcoded, and computing the payload of the detached/attached signaturealso uses a hardcoded hash. A future version of this document may address crypto-agility for boththese uses by replacing ath with a new header that upgrades the algorithm and possibly defining anew header that indicates the HTTP content's hash method.

7.3.4.1.Key Rotation Using Attached JWS

When rotating a key using attached JWS, the message, which includes the new public key value or reference, is first signed with the old key using a JWS object withtyp header value "gnap-binding-rotation-jws". The value of the JWS object is then taken as the payload of a new JWS object, to be signed by the new key.

8.Resource Access Rights

GNAP provides a rich structure for describing the protected resourceshosted by RSs and accessed by client software. This structure is used whenthe client instance requests an access token (Section 2.1) and whenan access token is returned (Section 3.2). GNAP's structure isdesigned to be analogous to the OAuth 2.0 Rich Authorization Requestsdata structure defined in[RFC9396].

The root of this structure is a JSON array. The elements of the JSONarray represent rights of access that are associated with theaccess token. Individual rights of access can be defined by the RS aseither an object or a string. The resulting access is the union of all elementswithin the array.

The access associated with the access token is describedusing objects that each contain multipledimensions of access. Each object contains aREQUIREDtypeproperty that determines the type of API that the token is used for andthe structure of the rest of the object. There is no expectedinteroperability between differenttype definitions.

type (string):

The type of resource request as a string. This fieldMAY define which other fields are allowed in the request object.REQUIRED.

The value of thetype field is under the control of the AS.This fieldMUST be compared using an exact byte match of the stringvalue against known types by the AS. The ASMUST ensure that thereis no collision between different authorization data types that itsupports. The ASMUST NOT do any collation or normalization of datatypes during comparison. It isRECOMMENDED that designers of general-purposeAPIs use a URI for this field to avoid collisions between multipleAPI types protected by a single AS.

While it is expected that many APIs will have their own properties,this specification defines a set of common data fields that are designed to beusable across different types of APIs. This specification does not require theuse of these common fields by an API definition but, instead, provides them asreusable generic components for API designers to make use of. The allowablevalues of all fields are determined by the API being protected, as definedby a particulartype value.

actions (array of strings):

The types of actions the client instance will take at the RS as an array of strings (for example, a client instance asking for a combination of "read" and "write" access).

locations (array of strings):

The location of the RS as an array of strings. These strings are typically URIs identifying the location of the RS.

datatypes (array of strings):

The kinds of data available to the client instance at the RS's API as an array of strings (for example, a client instance asking for access to raw "image" data and "metadata" at a photograph API).

identifier (string):

A string identifier indicating a specific resource at the RS (for example, a patient identifier for a medical API or a bank account number for a financial API).

privileges (array of strings):

The types or levels of privilege being requested at the resource (for example, a client instance asking for administrative-level access or access when the RO is no longer online).

The following non-normative example describes three kinds of access (read, write, and delete) to each oftwo different locations and two different data types (metadata and images) for a single access tokenusing the fictitiousphoto-api type definition.

"access": [    {        "type": "photo-api",        "actions": [            "read",            "write",            "delete"        ],        "locations": [            "https://server.example.net/",            "https://resource.local/other"        ],        "datatypes": [            "metadata",            "images"        ]    }]

While the exact semantics of interpreting the fields of an accessrequest object are subject to the definition of thetype,it is expected that the access requested for each object in the arrayis the cross-product of all fields of the object. That is tosay, the object represents a request for allactions listedto be used at alllocations listed for all possibledatatypeslisted within the object. Assuming the request above was granted,the client instance could assume that itwould be able to do aread action against theimages on the first serveras well as adelete action on themetadata of the second server, or any othercombination of these fields, using the same access token.

To request a different combination of access,such as requesting one of the possibleactions against one of the possiblelocationsand a different choice of possibleactions against a different one of the possiblelocations, theclient instance can include multiple separate objects in theresources array.The total access rights for the resulting accesstoken are the union of all objects. The following non-normative example uses the same fictitiousphoto-apitype definition to request a single access token with more specificallytargeted access rights by using two discrete objects within the request.

"access": [    {        "type": "photo-api",        "actions": [            "read"        ],        "locations": [            "https://server.example.net/"        ],        "datatypes": [            "images"        ]    },    {        "type": "photo-api",        "actions": [            "write",            "delete"        ],        "locations": [            "https://resource.local/other"        ],        "datatypes": [            "metadata"        ]    }]

The access requested here is forread access toimages on one serveras well aswrite anddelete access formetadata on a differentserver (importantly, without requestingwrite ordelete access toimages on thefirst server).

It is anticipated that API designers will use a combinationof common fields defined in this specification as well asfields specific to the API itself. The following non-normativeexample shows the use of both common and API-specific fields aspart of two different fictitious APItype values. The firstaccess request includes theactions,locations, anddatatypesfields specified here as well as the API-specificgeolocationfield. The second access request includes theactions andidentifier fields specified here as well as the API-specificcurrency field.

"access": [    {        "type": "photo-api",        "actions": [            "read",            "write"        ],        "locations": [            "https://server.example.net/",            "https://resource.local/other"        ],        "datatypes": [            "metadata",            "images"        ],        "geolocation": [            { lat: -32.364, lng: 153.207 },            { lat: -35.364, lng: 158.207 }        ]    },    {        "type": "financial-transaction",        "actions": [            "withdraw"        ],        "identifier": "account-14-32-32-3",        "currency": "USD"    }]

If this request is approved,the resulting access token's access rights will bethe union of the requested types of access for each of the two APIs, just as above.

8.1.Requesting Resources by Reference

Instead of sending an object describing the requested resource (Section 8),access rightsMAY be communicated as a string known tothe AS representing the access being requested. Just like access rights communicatedas an object, access rights communicated as reference strings indicate a specificaccess at a protected resource. In the following non-normative example,three distinct resource access rights are being requested.

"access": [    "read", "dolphin-metadata", "some other thing"]

This value is opaque to the client instance andMAY be anyvalid JSON string; therefore, it could include spaces, Unicodecharacters, and properly escaped string sequences. However, in somesituations, the value is intended to beseen and understood by the client software's developer. In such cases, theAPI designer choosing any such human-readable stringsSHOULD take stepsto ensure the string values are not easily confused by a developer,such as by limiting the strings to easily disambiguated characters.

This functionality is similar in practice to OAuth 2.0'sscope parameter[RFC6749], where a single stringrepresents the set of access rights requested by the client instance. As such, the referencestring could contain any valid OAuth 2.0 scope value, as inAppendix B.5. Note that the referencestring here is not bound to the same character restrictions as OAuth 2.0'sscope definition.

A singleaccess arrayMAY include both object-type andstring-type resource items. In this non-normative example,the client instance is requesting access to aphoto-api andfinancial-transaction API typeas well as the reference values ofread,dolphin-metadata, andsome other thing.

"access": [    {        "type": "photo-api",        "actions": [            "read",            "write",            "delete"        ],        "locations": [            "https://server.example.net/",            "https://resource.local/other"        ],        "datatypes": [            "metadata",            "images"        ]    },    "read",    "dolphin-metadata",    {        "type": "financial-transaction",        "actions": [            "withdraw"        ],        "identifier": "account-14-32-32-3",        "currency": "USD"    },    "some other thing"]

The requested access is the union of all elements of the array, including both objects andreference strings.

In order to facilitate the use of both object and reference strings to access the samekind of APIs, the API designer can define a clear mapping between these forms.One possible approach for choosing reference string values is to use the same value as thetype parameter from the fully specified object, with the API defining a set of defaultbehaviors in this case. For example, an API definition could declare the following string:

"access": [    "photo-api"]

As being equivalent to the following fully defined object:

"access": [    {        "type": "photo-api",        "actions": [ "read", "write", "delete" ],        "datatypes": [ "metadata", "image" ]    }]

The exact mechanisms for relating reference strings is up to the API designer. These are enforcedby the AS, and the details are out of scope for this specification.

9.Discovery

By design, GNAP minimizes the need for any pre-flightdiscovery. To begin a request, the client instance only needs to know the grant endpoint ofthe AS (a single URI) and which keys it will use to sign the request. Everything elsecan be negotiated dynamically in the course of the protocol.

However, the AS can have limits on its allowed functionality. If theclient instance wants to optimize its calls to the AS before making a request, itMAYsend an HTTP OPTIONS request to the grant request endpoint to retrieve theserver's discovery information. The ASMUST respond with a JSON document with Content-Typeapplication/json containing a single object with the following fields:

grant_request_endpoint (string):

The location of the AS's grant request endpoint. The locationMUST be an absolute URL[RFC3986] with a scheme component (whichMUST be "https"), a host component, and optionally port, path, and query components and no fragment components. This URLMUST match the URL the client instance used to make the discovery request.REQUIRED.

interaction_start_modes_supported (array of strings):

A list of the AS's interaction start methods. The values of this list correspond to the possible values for the interaction start field of the request (Section 2.5.1) andMUST be values from the "GNAP Interaction Start Modes" registry (Section 10.9).OPTIONAL.

interaction_finish_methods_supported (array of strings):

A list of the AS's interaction finish methods. The values of this list correspond to the possible values for the method element of the interaction finish field of the request (Section 2.5.2) andMUST be values from the "GNAP Interaction Finish Methods" registry (Section 10.10).OPTIONAL.

key_proofs_supported (array of strings):

A list of the AS's supported key proofing mechanisms. The values of this list correspond to possible values of theproof field of the key section of the request (Section 7.1) andMUST be values from the "GNAP Key Proofing Methods" registry (Section 10.16).OPTIONAL.

sub_id_formats_supported (array of strings):

A list of the AS's supported Subject Identifier formats. The values of this list correspond to possible values of the Subject Identifier field of the request (Section 2.2) andMUST be values from the "Subject Identifier Formats" registry[Subj-ID-Formats].OPTIONAL.

assertion_formats_supported (array of strings):

A list of the AS's supported assertion formats. The values of this list correspond to possible values of the subject assertion field of the request (Section 2.2) andMUST be values from the "GNAP Assertion Formats" registry (Section 10.6).OPTIONAL.

key_rotation_supported (boolean):

The boolean "true" indicates that rotation of access token bound keys by the client (Section 6.1.1) is supported by the AS. The absence of this field or a boolean "false" value indicates that this feature is not supported.

The information returned from this method is for optimizationpurposes only. The ASMAY deny any request, or any portion of a request,even if it lists a capability as supported. For example, if a given client instancecan be registered with themtls key proofingmechanism but the AS also returns other proofing methods from the discovery document, then the ASwill still deny a request from that client instance using a different proofingmechanism. Similarly, an AS withkey_rotation_supported set to "true" can still denyany request for rotating any access token's key for a variety of reasons.

Additional fields can be defined in the "GNAP Authorization Server Discovery Fields" registry (Section 10.18).

9.1.RS-First Method of AS Discovery

If the client instance calls an RS without an access token or with an invalid access token, the RSSHOULD be explicit about the fact that GNAP needs to be used to access the resource by responding with the WWW-Authenticate header field and a GNAP challenge.

In some situations, the client instance might want to know with which specific AS it needs to negotiate for access to that RS.The RSMAY additionally return the followingOPTIONAL parameters:

as_uri:

The URI of the grant endpoint of the GNAP AS. Used by the client instance to call the AS to request an access token.

referrer:

The URI of the GNAP RS. Sent by the client instance in the Referer header as part of the grant request.

access:

An opaque access reference as defined inSection 8.1.MUST be sufficient for at least the action the client instance was attempting to take at the RS andMAY allow additional access rights as well. Sent by the client as an access right in the grant request.

The client instanceSHOULD then use both thereferrer andaccess parameters in its access token request. The client instanceMUST check that thereferrer parameter is equal to the URI of the RS using the simple string comparison method inSection 6.2.1 of [RFC3986].

The means for the RS to determine the value for theaccess reference are out of scope of this specification, but some dynamic methods are discussed in[GNAP-RS].

When receiving the following response from the RS:

NOTE: '\' line wrapping per RFC 8792WWW-Authenticate: \  GNAP as_uri=https://as.example/tx\  ;access=FWWIKYBQ6U56NL1\  ;referrer=https://rs.example

The client instance then makes a request to theas_uri as described inSection 2, with the value ofreferrer passed as an HTTP Referer header field and theaccess reference passed unchanged into theaccess array in theaccess_token portion of the request. The client instanceMAY request additional resources and other information.

In the following non-normative example, the client instance is requesting a single access token using the opaque access referenceFWWIKYBQ6U56NL1 received from the RS in addition to thedolphin-metadata that the client instance has been configured with out of band.

POST /tx HTTP/1.1Host: as.exampleReferer: https://rs.example/resourceContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "FWWIKYBQ6U56NL1",            "dolphin-metadata"        ]    },    "client": "KHRS6X63AJ7C7C4AZ9AO"}

The client instance includes the Referer header field as a way for the AS to know that the process is initiated through a discovery process at the RS.

If issued, the resulting access token would contain sufficient access to be used at both referenced resources.

Security considerations, especially related to the potential of a compromised RS (Section 11.37) redirecting the requests of an otherwise properly authenticated client, need to be carefully considered when allowing such a discovery process. This risk can be mitigated by an alternative pre-registration process so that the client knows which AS protects which RS. There are also privacy considerations related to revealing which AS is protecting a given resource; these are discussed inSection 12.4.1.

9.2.Dynamic Grant Endpoint Discovery

Additional methods of discovering the appropriate grant endpoint for a given applicationare outside the scope of this specification. This limitation is intentional, as many applicationsrely on static configuration between the client instance and AS, as is common in OAuth 2.0.However, the dynamic nature of GNAP makes it a prime candidate for other extensions defining methodsfor discovery of the appropriate AS grant endpoint at runtime. Advanced use cases could definecontextual methods for securely providing this endpoint to the client instance.Furthermore, GNAP's design intentionally requires the client instance to only know the grantendpoint and not additional parameters, since other functions and values can be disclosedand negotiated during the grant process.

10.IANA Considerations

IANA has added values to existing registries as well as created 16 registries for GNAP[GNAP-REG] and populated those registries with initial values as described in this section.

All use of value typing is based on data types in[RFC8259] andMUST be one of the following: number, object, string, boolean, or array. When the type is array, the contents of the arrayMUST be specified, as in "array of objects" when one subtype is allowed or "array of strings/objects" when multiple simultaneous subtypes are allowed. When the type is object, the structure of the objectMUST be specified in the definition. If a parameter is available in different types, each typeSHOULD be registered separately.

General guidance for extension parameters is found inAppendix D.

10.1.HTTP Authentication Scheme Registration

IANA has registered of the following scheme in the"HTTP Authentication Schemes" registry[Auth-Schemes] defined inSection 18.5 of [HTTP]:

Authentication Scheme Name:
GNAP
Reference:
Section 7.2 of RFC 9635

10.2.Media Type Registration

Per this section, IANA has registered the following media types[RFC2046] inthe "Media Types" registry[MediaTypes] as describedin[RFC6838].

10.2.1.application/gnap-binding-jwsd

This media type indicates that the content is a GNAP message to be bound with a detached JWS mechanism.

Type name:
application
Subtype name:
gnap-binding-jwsd
Required parameters:
N/A
Optional parameters:
N/A
Encoding considerations:
binary
Security considerations:
SeeSection 11 of RFC 9635.
Interoperability considerations:
N/A
Published specification:
RFC 9635
Applications that use this media type:
GNAP
Fragment identifier considerations:
N/A
Additional information:


Deprecated alias names for this type:
N/A
Magic number(s):
N/A
File extension(s):
N/A
Macintosh file type code(s):
N/A
Person & email address to contact for further information:
IETF GNAP Working Group (txauth@ietf.org)
Intended usage:
COMMON
Restrictions on usage:
none
Author:
IETF GNAP Working Group (txauth@ietf.org)
Change Controller:
IETF

10.2.2.application/gnap-binding-jws

This media type indicates that the content is a GNAP message to be bound with an attached JWS mechanism.

Type name:
application
Subtype name:
gnap-binding-jws
Required parameters:
N/A
Optional parameters:
N/A
Encoding considerations:
binary
Security considerations:
SeeSection 11 of RFC 9635.
Interoperability considerations:
N/A
Published specification:
RFC 9635
Applications that use this media type:
GNAP
Fragment identifier considerations:
N/A
Additional information:


Deprecated alias names for this type:
N/A
Magic number(s):
N/A
File extension(s):
N/A
Macintosh file type code(s):
N/A
Person & email address to contact for further information:
IETF GNAP Working Group (txauth@ietf.org)
Intended usage:
COMMON
Restrictions on usage:
none
Author:
IETF GNAP Working Group (txauth@ietf.org)
Change Controller:
IETF

10.2.3.application/gnap-binding-rotation-jwsd

This media type indicates that the content is a GNAP token rotation message to be bound with a detached JWS mechanism.

Type name:
application
Subtype name:
gnap-binding-rotation-jwsd
Required parameters:
N/A
Optional parameters:
N/A
Encoding considerations:
binary
Security considerations:
SeeSection 11 of RFC 9635.
Interoperability considerations:
N/A
Published specification:
RFC 9635
Applications that use this media type:
GNAP
Fragment identifier considerations:
N/A
Additional information:


Deprecated alias names for this type:
N/A
Magic number(s):
N/A
File extension(s):
N/A
Macintosh file type code(s):
N/A
Person & email address to contact for further information:
IETF GNAP Working Group (txauth@ietf.org)
Intended usage:
COMMON
Restrictions on usage:
none
Author:
IETF GNAP Working Group (txauth@ietf.org)
Change Controller:
IETF

10.2.4.application/gnap-binding-rotation-jws

This media type indicates that the content is a GNAP token rotation message to be bound with an attached JWS mechanism.

Type name:
application
Subtype name:
gnap-binding-rotation-jws
Required parameters:
N/A
Optional parameters:
N/A
Encoding considerations:
binary
Security considerations:
SeeSection 11 of RFC 9635.
Interoperability considerations:
N/A
Published specification:
RFC 9635
Applications that use this media type:
GNAP
Fragment identifier considerations:
N/A
Additional information:


Deprecated alias names for this type:
N/A
Magic number(s):
N/A
File extension(s):
N/A
Macintosh file type code(s):
N/A
Person & email address to contact for further information:
IETF GNAP Working Group (txauth@ietf.org)
Intended usage:
COMMON
Restrictions on usage:
none
Author:
IETF GNAP Working Group (txauth@ietf.org)
Change Controller:
IETF

10.3.GNAP Grant Request Parameters

This document defines a GNAP grant request, for which IANA has created and maintains a new registry titled "GNAP Grant Request Parameters". Initial values for this registry are given inSection 10.3.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The designated expert (DE) is expected to ensure the following:

  • All registrations follow the template presented inSection 10.3.1.
  • The request parameter's definition is sufficiently orthogonal to existing functionality provided by existing parameters.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.
  • The request parameter's definition specifies the expected behavior of the AS in response to the request parameter for each potential state of the grant request.

10.3.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.3.2.Initial Contents

Table 1
NameTypeReference
access_tokenobjectSection 2.1.1 of RFC 9635
access_tokenarray of objectsSection 2.1.2 of RFC 9635
subjectobjectSection 2.2 of RFC 9635
clientobjectSection 2.3 of RFC 9635
clientstringSection 2.3.1 of RFC 9635
userobjectSection 2.4 of RFC 9635
userstringSection 2.4.1 of RFC 9635
interactobjectSection 2.5 of RFC 9635
interact_refstringSection 5.1 of RFC 9635

10.4.GNAP Access Token Flags

This document defines GNAP access token flags, for which IANA has created and maintains a new registry titled "GNAP Access Token Flags". Initial values for this registry are given inSection 10.4.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.4.1.
  • The flag specifies whether it applies to requests for tokens to the AS, responses with tokens from the AS, or both.

10.4.1.Registration Template

Name:

An identifier for the parameter.

Allowed Use:

Where the flag is allowed to occur. Possible values are "Request", "Response", and "Request, Response".

Reference:

Reference to one or more documents that specify the value, 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.

10.4.2.Initial Contents

Table 2
NameAllowed UseReference
bearerRequest, Response Sections2.1.1 and3.2.1 of RFC 9635
durableResponseSection 3.2.1 of RFC 9635

10.5.GNAP Subject Information Request Fields

This document defines a means to request subject information from the AS to the client instance, for which IANA has created and maintains a new registry titled "GNAP Subject Information Request Fields". Initial values for this registry are given inSection 10.5.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.5.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.

10.5.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.5.2.Initial Contents

Table 3
NameTypeReference
sub_id_formatsarray of stringsSection 2.2 of RFC 9635
assertion_formatsarray of stringsSection 2.2 of RFC 9635
sub_idsarray of objectsSection 2.2 of RFC 9635

10.6.GNAP Assertion Formats

This document defines a means to pass identity assertions between the AS and client instance, for which IANA has created and maintains a new registry titled "GNAP Assertion Formats". Initial values for this registry are given inSection 10.6.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.6.1.
  • The definition specifies the serialization format of the assertion value as used within GNAP.

10.6.1.Registration Template

Name:

An identifier for the assertion format.

Reference:

Reference to one or more documents that specify the value, 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.

10.6.2.Initial Contents

Table 4
NameReference
id_tokenSection 3.4.1 of RFC 9635
saml2Section 3.4.1 of RFC 9635

10.7.GNAP Client Instance Fields

This document defines a means to send information about the client instance, for which IANA has created and maintains a new registry titled "GNAP Client Instance Fields". Initial values for this registry are given inSection 10.7.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.7.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.

10.7.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.7.2.Initial Contents

Table 5
NameTypeReference
keyobjectSection 7.1 of RFC 9635
keystringSection 7.1.1 of RFC 9635
class_idstringSection 2.3 of RFC 9635
displayobjectSection 2.3.2 of RFC 9635

10.8.GNAP Client Instance Display Fields

This document defines a means to send end-user-facing displayable information about the client instance, for which IANA has created and maintains a new registry titled "GNAP Client Instance Display Fields". Initial values for this registry are given inSection 10.8.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.8.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.

10.8.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.8.2.Initial Contents

Table 6
NameTypeReference
namestringSection 2.3.2 of RFC 9635
uristringSection 2.3.2 of RFC 9635
logo_uristringSection 2.3.2 of RFC 9635

10.9.GNAP Interaction Start Modes

This document defines a means for the client instance to begin interaction between the end user and the AS, for which IANA has created and maintains a new registry titled "GNAP Interaction Start Modes". Initial values for this registry are given inSection 10.9.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.9.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.
  • Any registration using an "object" type declares all additional parameters, their optionality, and their purpose.
  • The start mode clearly defines what actions the client is expected to take to begin interaction, what the expected user experience is, and any security considerations for this communication from either party.
  • The start mode documents incompatibilities with other start modes or finish methods, if applicable.
  • The start mode provides enough information to uniquely identify the grant request during the interaction. For example, in theredirect andapp modes, this is done using a unique URI (including its parameters). In theuser_code anduser_code_uri modes, this is done using the value of the user code.

10.9.1.Registration Template

Mode:

An identifier for the interaction start mode.

Type:

The JSON type for the value, either "string" or "object", as described inSection 2.5.1.

Reference:

Reference to one or more documents that specify the value, 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.

10.9.2.Initial Contents

Table 7
ModeTypeReference
redirectstringSection 2.5.1.1 of RFC 9635
appstringSection 2.5.1.2 of RFC 9635
user_codestringSection 2.5.1.3 of RFC 9635
user_code_uristringSection 2.5.1.4 of RFC 9635

10.10.GNAP Interaction Finish Methods

This document defines a means for the client instance to be notified of the end of interaction between the end user and the AS, for which IANA has created and maintains a new registry titled "GNAP Interaction Finish Methods". Initial values for this registry are given inSection 10.10.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.10.1.
  • All finish methods clearly define what actions the AS is expected to take, what listening methods the client instance needs to enable, and any security considerations for this communication from either party.
  • All finish methods document incompatibilities with any start modes, if applicable.

10.10.1.Registration Template

Method:

An identifier for the interaction finish method.

Reference:

Reference to one or more documents that specify the value, 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.

10.10.2.Initial Contents

Table 8
MethodReference
redirectSection 2.5.2.1 of RFC 9635
pushSection 2.5.2.2 of RFC 9635

10.11.GNAP Interaction Hints

This document defines a set of hints that a client instance can provide to the AS to facilitate interaction with the end user, for which IANA has created and maintains a new registry titled "GNAP Interaction Hints". Initial values for this registry are given inSection 10.11.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.11.1.
  • All interaction hints clearly document the expected behaviors of the AS in response to the hint, and an AS not processing the hint does not impede the operation of the AS or client instance.

10.11.1.Registration Template

Name:

An identifier for the parameter.

Reference:

Reference to one or more documents that specify the value, 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.

10.11.2.Initial Contents

Table 9
NameReference
ui_localesSection 2.5.3 of RFC 9635

10.12.GNAP Grant Response Parameters

This document defines a GNAP grant response, for which IANA has created and maintains a new registry titled "GNAP Grant Response Parameters". Initial values for this registry are given inSection 10.12.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.12.1.
  • The response parameter's definition is sufficiently orthogonal to existing functionality provided by existing parameters.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.
  • The response parameter's definition specifies grant states for which the client instance can expect this parameter to appear in a response message.

10.12.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.12.2.Initial Contents

Table 10
NameTypeReference
continueobjectSection 3.1 of RFC 9635
access_tokenobjectSection 3.2.1 of RFC 9635
access_tokenarray of objectsSection 3.2.2 of RFC 9635
interactobjectSection 3.3 of RFC 9635
subjectobjectSection 3.4 of RFC 9635
instance_idstringSection 3.5 of RFC 9635
errorobjectSection 3.6 of RFC 9635

10.13.GNAP Interaction Mode Responses

This document defines a means for the AS to provide the client instance with information that is required to complete a particular interaction mode, for which IANA has created and maintains a new registry titled "GNAP Interaction Mode Responses". Initial values for this registry are given inSection 10.13.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.13.1.
  • If the name of the registration matches the name of an interaction start mode, the response parameter is unambiguously associated with the interaction start mode of the same name.

10.13.1.Registration Template

Name:

An identifier for the parameter.

Reference:

Reference to one or more documents that specify the value, 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.

10.13.2.Initial Contents

Table 11
NameReference
redirectSection 3.3 of RFC 9635
appSection 3.3 of RFC 9635
user_codeSection 3.3 of RFC 9635
user_code_uriSection 3.3 of RFC 9635
finishSection 3.3 of RFC 9635
expires_inSection 3.3 of RFC 9635

10.14.GNAP Subject Information Response Fields

This document defines a means to return subject information from the AS to the client instance, for which IANA has created and maintains a new registry titled "GNAP Subject Information Response Fields". Initial values for this registry are given inSection 10.14.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.14.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.

10.14.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.14.2.Initial Contents

Table 12
NameTypeReference
sub_idsarray of objectsSection 3.4 of RFC 9635
assertionsarray of objectsSection 3.4 of RFC 9635
updated_atstringSection 3.4 of RFC 9635

10.15.GNAP Error Codes

This document defines a set of errors that the AS can return to the client instance, for which IANA has created and maintains a new registry titled "GNAP Error Codes". Initial values for this registry are given inSection 10.15.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.15.1.
  • The error response is sufficiently unique from other errors to provide actionable information to the client instance.
  • The definition of the error response specifies all conditions in which the error response is returned and the client instance's expected action.

10.15.1.Registration Template

Error:

A unique string code for the error.

Reference:

Reference to one or more documents that specify the value, 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.

10.15.2.Initial Contents

Table 13
ErrorReference
invalid_requestSection 3.6 of RFC 9635
invalid_clientSection 3.6 of RFC 9635
invalid_interactionSection 3.6 of RFC 9635
invalid_flagSection 3.6 of RFC 9635
invalid_rotationSection 3.6 of RFC 9635
key_rotation_not_supportedSection 3.6 of RFC 9635
invalid_continuationSection 3.6 of RFC 9635
user_deniedSection 3.6 of RFC 9635
request_deniedSection 3.6 of RFC 9635
unknown_userSection 3.6 of RFC 9635
unknown_interactionSection 3.6 of RFC 9635
too_fastSection 3.6 of RFC 9635
too_many_attemptsSection 3.6 of RFC 9635

10.16.GNAP Key Proofing Methods

This document defines methods that the client instance can use to prove possession of a key, for which IANA has created and maintains a new registry titled "GNAP Key Proofing Methods". Initial values for this registry are given inSection 10.16.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.16.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.
  • The proofing method provides sufficient coverage of and binding to the protocol messages to which it is applied.
  • The proofing method definition clearly enumerates how all requirements inSection 7.3 are fulfilled by the definition.

10.16.1.Registration Template

Method:

A unique string code for the key proofing method.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.16.2.Initial Contents

Table 14
MethodTypeReference
httpsigstringSection 7.3.1 of RFC 9635
httpsigobjectSection 7.3.1 of RFC 9635
mtlsstringSection 7.3.2 of RFC 9635
jwsdstringSection 7.3.3 of RFC 9635
jwsstringSection 7.3.4 of RFC 9635

10.17.GNAP Key Formats

This document defines formats for a public key value, for which IANA has created and maintains a new registry titled "GNAP Key Formats". Initial values for this registry are given inSection 10.17.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.17.1.
  • The key format specifies the structure and serialization of the key material.

10.17.1.Registration Template

Format:

A unique string code for the key format.

Reference:

Reference to one or more documents that specify the value, 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.

10.17.2.Initial Contents

Table 15
FormatReference
jwkSection 7.1 of RFC 9635
certSection 7.1 of RFC 9635
cert#S256Section 7.1 of RFC 9635

10.18.GNAP Authorization Server Discovery Fields

This document defines a discovery document for an AS, for which IANA has created and maintains a new registry titled "GNAP Authorization Server Discovery Fields". Initial values for this registry are given inSection 10.18.2. Future assignments and modifications to existing assignments are to be made through the Specification Required registration policy[RFC8126].

The DE is expected to ensure the following:

  • All registrations follow the template presented inSection 10.18.1.
  • Registrations for the same name with different types are sufficiently close in functionality so as not to cause confusion for developers.
  • The values in the discovery document are sufficient to provide optimization and hints to the client instance, but knowledge of the discovered value is not required for starting a transaction with the AS.

10.18.1.Registration Template

Name:

An identifier for the parameter.

Type:

The JSON type allowed for the value.

Reference:

Reference to one or more documents that specify the value, 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.

10.18.2.Initial Contents

Table 16
NameTypeReference
grant_request_endpointstringSection 9 of RFC 9635
interaction_start_modes_supportedarray of stringsSection 9 of RFC 9635
interaction_finish_methods_supportedarray of stringsSection 9 of RFC 9635
key_proofs_supportedarray of stringsSection 9 of RFC 9635
sub_id_formats_supportedarray of stringsSection 9 of RFC 9635
assertion_formats_supportedarray of stringsSection 9 of RFC 9635
key_rotation_supportedbooleanSection 9 of RFC 9635

11.Security Considerations

In addition to the normative requirements in this document, implementors are strongly encouraged to consider these additional security considerations in implementations and deployments of GNAP.

11.1.TLS Protection in Transit

All requests in GNAP made over untrusted network connections have to be made over TLS as outlined in[BCP195]to protect the contents of the request and response from manipulation and interception by an attacker.This includes all requests from a client instance to the AS, all requests from the client instance toan RS, and any requests back to a client instance such as the push-based interaction finish method.Additionally, all requests between a browser and other components, such as during redirect-basedinteraction, need to be made over TLS or use equivalent protection such as a network connection local to the browser ("localhost").

Even though requests from the client instance to the AS are signed, the signature method alone does not protectthe request from interception by an attacker. TLS protects the response as well as the request,preventing an attacker from intercepting requested information as it is returned. This is particularlyimportant in this specification for security artifacts such as nonces and forpersonal information such as subject information.

The use of key-bound access tokens does not negate the requirement for protecting calls to the RS with TLS.The keys and signatures associated with a bound access token will prevent an attacker from using a stolentoken; however, without TLS, an attacker would be able to watch the data being sent to the RS and returned from the RSduring legitimate use of the client instance under attack. Additionally, without TLS, an attacker would beable to profile the calls made between the client instance and RS, possibly gaining information about the functioningof the API between the client software and RS software that would otherwise be unknown to the attacker.

Note that connections from the end user and RO's browser also need to be protected with TLS. This applies during initialredirects to an AS's components during interaction, during any interaction with the RO, and duringany redirect back to the client instance. Without TLS protection on these portions of the process, anattacker could wait for a valid request to start and then take over the RO's interaction session.

11.2.Signing Requests from the Client Software

Even though all requests in GNAP need to be transmitted over TLS or its equivalent, the use of TLSalone is not sufficient to protect all parts of a multi-party and multi-stage protocol like GNAP,and TLS is not targeted at tying multiple requests to each other over time.To account for this, GNAP makes use of message-level protection and key presentation mechanismsthat strongly associate a request with a key held by the client instance (seeSection 7).

During the initial request from a client instance to the AS, the client instance has to identify andprove possession of a cryptographic key. If the key is known to the AS, e.g., previouslyregistered or dereferenceable to a trusted source, the AS can associate a set of policies to theclient instance identified by the key. Without the requirement that the client instance prove that it holdsthat key, the AS could not trust that the connection came from any particular client and couldnot apply any associated policies.

Even more importantly, the client instance proving possession of a key on the first request allows the AS to associate future requests with each other by binding all future requests in that transaction to the same key. The access token used for grant continuation is bound to the same key and proofing mechanism used by the client instance in its initial request; this means that the client instance needs to prove possession of that same key in future requests, which allows the AS to be sure that the same client instance is executing the follow-ups for a given ongoing grant request. Therefore, the AS has to ensure that all subsequent requests for a grant are associated with the same key that started the grant or with the most recent rotation of that key. This need holds true even if the initial key is previously unknown to the AS, such as would be the case when a client instance creates an ephemeral key for its request. Without this ongoing association, an attacker would be able to impersonate a client instance in the midst of a grant request, potentially stealing access tokens and subject information with impunity.

Additionally, all access tokens in GNAP default to be associated with the key that was presentedduring the grant request that created the access token. This association allows an RS to know thatthe presenter of the access token is the same party that the token was issued to, as identifiedby their keys. While non-bound bearer tokens are an option in GNAP, these types of tokenshave their own trade-offs, which are discussed inSection 11.9.

TLS functions at the transport layer, ensuring that only the parties on either end of thatconnection can read the information passed along that connection. Each time a new connectionis made, such as for a new HTTP request, a new trust that is mostly unrelated to previousconnections is re-established. While modern TLS does make use of session resumption, this still needs to be augmentedwith authentication methods to determine the identity of parties on theconnections. In other words, it is not possible with TLS alone to know that the same party is makinga set of calls over time, since each time a new TLS connection is established, both the client and the server (or the server only when using MTLS (Section 7.3.2)) have to validatethe other party's identity. Such a verification can be achieved via methods described in[RFC9525], but these are not enough to establish the identity of the client instance in many cases.

To counter this, GNAP defines a set of key binding methods inSection 7.3 that allows authentication andproof of possession by the caller, which is usually the client instance. These methods are intended to be used inaddition to TLS on all connections.

11.3.MTLS Message Integrity

The MTLS key proofing mechanism (Section 7.3.2) provides a means for a client instance to present a keyusing a certificate at the TLS layer. Since TLS protects the entire HTTP message in transit,verification of the TLS client certificate presented with the message provides a sufficient bindingbetween the two. However, since TLS is functioning at a separate layer from HTTP, there is nodirect connection between the TLS key presentation and the message itself, other than the fact thatthe message was presented over the TLS channel. That is to say, any HTTP message can be presentedover the TLS channel in question with the same level of trust. The verifier is responsible forensuring the key in the TLS client certificate is the one expected for a particular request. Forexample, if the request is a grant request (Section 2), the AS needs to compare the TLS clientcertificate presented at the TLS layer to the key identified in the request content itself (eitherby value or through a referenced identifier).

Furthermore, the prevalence of the TLS terminating reverse proxy (TTRP) pattern in deployments addsa wrinkle to the situation. In this common pattern, the TTRP validates the TLS connection and then forwards the HTTP message contents onward to an internal system for processing. The systemprocessing the HTTP message no longer has access to the original TLS connection's information andcontext.To compensate for this, the TTRP could inject the TLS client certificate intothe forwarded request using the HTTP Client-Cert header field[RFC9111], giving the downstream system access to the certificateinformation. The TTRP has to be trusted to provide accurate certificateinformation, and the connection between the TTRP and the downstream systemalso has to be protected. The TTRP could provide some additional assurance,for example, by adding its own signature to the Client-Cert header field usingHTTP message signatures[RFC9421]. This signature would beeffectively ignored by GNAP (since it would not use GNAP'stagparameter value) but would be understood by the downstream service as part ofits deployment.

Additional considerations for different types of deployment patterns and key distributionmechanisms for MTLS are found inSection 11.4.

11.4.MTLS Deployment Patterns

GNAP does not specify how a client instance's keys could be made known to the AS ahead of time.The Public Key Infrastructure (PKI) can be used to manage the keys used by client instances when callingthe AS, allowing the AS to trust a root key from a trusted authority. This method is particularlyrelevant to the MTLS key proofing method, where the client instancepresents its certificate to the AS as part of the TLS connection. An AS using PKI to validate theMTLS connection would need to ensure that the presented certificate was issued by a trusted certificateauthority before allowing the connection to continue. PKI-based certificates would allow a key to be revokedand rotated through management at the certificate authority without requiring additional registrationor management at the AS. The PKI required to manage mutually authenticated TLS has historically beendifficult to deploy, especially at scale, but it remains an appropriate solution for systems wherethe required management overhead is not an impediment.

MTLS in GNAP need not use a PKI backing, as self-signed certificates and certificates from untrustedauthorities can still be presented as part of a TLS connection. In this case, the verifier wouldvalidate the connection but accept whatever certificate was presented by the client software. Thisspecific certificate can then be bound to all future connections from that client software bybeing bound to the resulting access tokens, in a trust-on-first-use pattern. SeeSection 11.3for more considerations on MTLS as a key proofing mechanism.

11.5.Protection of Client Instance Key Material

Client instances are identified by their unique keys, and anyone with access to a client instance's key materialwill be able to impersonate that client instance to all parties. This is true for both calls to the ASas well as calls to an RS using an access token bound to the client instance's unique key. As a consequence, it is of utmost importance for a client instance to protect its private key material.

Different types of client software have different methods for creating, managing, and registeringkeys. GNAP explicitly allows for ephemeral clients such as single-page applications (SPAs) and single-user clients (such asmobile applications) to create and present their own keys during the initial grant request without any explicit pre-registration step. The clientsoftware can securely generate a key pair on the device and present the public key, along with proof of holding the associatedprivate key, to the AS as part of the initial request. To facilitate trust in these ephemeral keys,GNAP further allows for an extensible set of client information to be passed with the request. Thisinformation can include device posture and third-party attestations of the client software's provenanceand authenticity, depending on the needs and capabilities of the client software and its deployment.

From GNAP's perspective, each distinct key is a different client instance. However, multiple clientinstances can be grouped together by an AS policy and treated similarly to each other. For instance,if an AS knows of several different keys for different servers within a cluster, the AS candecide that authorization of one of these servers applies to all other servers within the cluster. An ASthat chooses to do this needs to be careful with how it groups different client keys together in its policy,since the breach of one instance would have direct effects on the others in the cluster.

Additionally, if an end user controls multiple instances of a single type of client software, such ashaving an application installed on multiple devices, each of these instances is expected to have aseparate key and be issued separate access tokens. However, if the AS is able to group these separateinstances together as described above, it can streamline the authorization process for new instancesof the same client software. For example, if two client instances can present proof of a valid installationof a piece of client software, the AS would be able to associate the approval of the first instance of thissoftware to all related instances. The AS could then choose to bypass an explicit prompt of the RO for approval during authorization, since such approval has already been given. An AS doing sucha process would need to take assurance measures that the different instances are in fact correlatedand authentic, as well as ensure that the expected RO is in control of the client instance.

Finally, if multiple instances of client software each have the same key, then from GNAP's perspective,these are functionally the same client instance as GNAP has no reasonable way to differentiate betweenthem. This situation could happen if multiple instances within a cluster can securely share secretinformation among themselves. Even though there are multiple copies of the software, the shared keymakes these copies all present as a single instance. It is considered bad practice to share keys betweencopies of software unless they are very tightly integrated with each other and can be closely managed.It is particularly bad practice to allow an end user to copy keys between client instances and towillingly use the same key in multiple instances.

11.6.Protection of Authorization Server

The AS performs critical functions in GNAP, including authenticating client software, managing interactionswith end users to gather consent and provide notice, and issuing access tokens for client instancesto present to RSs. As such, protecting the AS is central to any GNAP deployment.

If an attacker is able to gain control over an AS, they would be able to create fraudulent tokens andmanipulate registration information to allow for malicious clients. These tokens and clients wouldbe trusted by other components in the ecosystem under the protection of the AS.

If the AS uses signed access tokens, an attacker in control of the AS's signing keys wouldbe able to manufacture fraudulent tokens for use at RSs under the protection of the AS.

If an attacker is able to impersonate an AS, they would be able to trick legitimate client instancesinto making signed requests for information that could potentially be proxied to a real AS. To combatthis, all communications to the AS need to be made over TLS or its equivalent, and the softwaremaking the connection has to validate the certificate chain of the host it is connecting to.

Consequently, protecting, monitoring, and auditing the AS is paramount to preserving the securityof a GNAP-protected ecosystem. The AS presents attackers with a valuable target for attack.Fortunately, the core focus and function of the AS is to provide security for the ecosystem, unlikethe RS whose focus is to provide an API or the client software whose focus is to access the API.

11.7.Symmetric and Asymmetric Client Instance Keys

Many of the cryptographic methods used by GNAP for key proofing can support both asymmetric and symmetriccryptography, and they can be extended to use a wide variety of mechanisms.Implementors will find the available guidelines on cryptographic key management provided in[RFC4107] useful. While symmetriccryptographic systems have some benefits in speed and simplicity, they have a distinct drawback --both parties need access to the same key in order to do both signing and verification ofthe message.When more than two parties share the same symmetric key,data origin authentication is not provided. Any party that knows thesymmetric key can compute a valid MAC; therefore, thecontents could originate from any one of the parties.

Use of symmetric cryptography means that when the client instance calls the AS to request a token, theAS needs to know the exact value of the client instance's key (or be able to derive it) inorder to validate the key proof signature. With asymmetric keys, the client needs to onlysend its public key to the AS to allow for verification that the client holds the associatedprivate key, regardless of whether or not that key was pre-registered with the AS.

Symmetric keys also have the expected advantage of providing better protection against quantumthreats in the future. Also, these types of keys (and their secure derivations) are widelysupported among many cloud-based key management systems.

When used to bind to an access token, a key value must be known by the RS in orderto validate the proof signature on the request. Common methods for communicating these proofingkeys include putting information in a structured access token and allowing the RS to lookup the associated key material against the value of the access token. With symmetric cryptography,both of these methods would expose the signing key to the RS and, in the case of a structuredaccess token, potentially to any party that can see the access token itself unless the token'spayload has been encrypted. Any of these parties would then be able to make calls using theaccess token by creating a valid signature using the shared key. With asymmetric cryptography, the RS needsto only know the public key associated with the token in order to validate the request; therefore, the RS cannotcreate any new signed calls.

While both signing approaches are allowed, GNAP treats these two classes of keys somewhatdifferently. Only the public portion of asymmetric keys are allowed to be sent by valuein requests to the AS when establishing a connection. Since sending a symmetric key (orthe private portion of an asymmetric key) would expose the signing material to any partieson the request path, including any attackers, sending these kinds of keys by value is prohibited.Symmetric keys can still be used by client instances, but only if the client instance can send a reference to the key andnot its value. This approach allows the AS to use pre-registered symmetric keys as wellas key derivation schemes to take advantage of symmetric cryptography without requiringkey distribution at runtime, which would expose the keys in transit.

Both the AS and client software can use systems such as hardware security modules to strengthentheir key security storage and generation for both asymmetric and symmetric keys (see alsoSection 7.1.2).

11.8.Generation of Access Tokens

The contents of access tokens need to be such that only the generating AS would be able tocreate them, and the contents cannot be manipulated by an attacker to gain different or additionalaccess rights.

One method for accomplishing this is to use a cryptographically random value for the access token,generated by the AS using a secure randomization function with sufficiently high entropy. The odds ofan attacker guessing the output of the randomization function to collide with a valid access tokenare exceedingly small, and even then, the attacker would not have any control over what theaccess token would represent since that information would be held close by the AS.

Another method for accomplishing this is to use a structured token that is cryptographically signed.In this case, the payload of the access token declares to the RS what the token is good for, butthe signature applied by the AS during token generation covers this payload. Only the AS can createsuch a signature; therefore, only the AS can create such a signed token. The odds of an attackerbeing able to guess a signature value with a useful payload are exceedingly small. This techniqueonly works if all targeted RSs check the signature of the access token. Any RS that does notvalidate the signature of all presented tokens would be susceptible to injection of a modifiedor falsified token. Furthermore, an AS has to carefully protect the keys used to sign accesstokens, since anyone with access to these signing keys would be able to create seemingly validaccess tokens using them.

11.9.Bearer Access Tokens

Bearer access tokens can be used by any party that has access to the token itself, without any additionalinformation. As a natural consequence, any RS that a bearer token is presented to has the technicalcapability of presenting that bearer token to another RS, as long as the token is valid. It alsomeans that any party that is able to capture the token value in storage or in transit is able touse the access token. While bearer tokens are inherently simpler, this simplicity has been misappliedand abused in making needlessly insecure systems. The downsides of bearer tokens have become morepertinent lately as stronger authentication systems have caused some attacks to shift to targettokens and APIs.

In GNAP, key-bound access tokens are the default due to their higher security properties. Whilebearer tokens can be used in GNAP, their use should be limited to cases where the simplicitybenefits outweigh the significant security downsides. One common deployment pattern is to use agateway that takes in key-bound tokens on the outside and verifies the signatures on the incomingrequests but translates the requests to a bearer token for use by trusted internal systems. Thebearer tokens are never issued or available outside of the internal systems, greatly limiting theexposure of the less-secure tokens but allowing the internal deployment to benefit from theadvantages of bearer tokens.

11.10.Key-Bound Access Tokens

Key-bound access tokens, as the name suggests, are bound to a specific key and must bepresented along with proof of that key during use. The key itself is not presented at the sametime as the token, so even if a token value is captured, it cannot be used to make a new request. Thisis particularly true for an RS, which will see the token value but will not see the keys usedto make the request (assuming asymmetric cryptography is in use, seeSection 11.7).

Key-bound access tokens provide this additional layer of protection only when the RS checks thesignature of the message presented with the token. Acceptance of an invalid presentation signature,or failure to check the signature entirely, would allow an attacker to make calls with a capturedaccess token without having access to the related signing key material.

In addition to validating the signature of the presentation message itself,the RS also needs to ensure that the signing key used is appropriate for the presented token.If an RS does not ensure that the right keys were used to sign a message with a specifictoken, an attacker would be able to capture an access token and sign the request with their ownkeys, thereby negating the benefits of using key-bound access tokens.

The RS also needs to ensure that sufficient portions of the message are covered by thesignature. Any items outside the signature could still affect the API's processing decisions,but these items would not be strongly bound to the token presentation. As such, an attackercould capture a valid request and then manipulate portions of the request outside of thesignature envelope in order to cause unwanted actions at the protected API.

Some key-bound tokens are susceptible to replay attacks, depending on the details of the signing methodused. Therefore, key proofing mechanisms used with access tokens needto use replay-protection mechanisms covered under the signature such as a per-message nonce, areasonably short time validity window, or other uniqueness constraints. The details of using thesewill vary depending on the key proofing mechanism in use. For example, HTTP message signatureshave both acreated andnonce signature parameter as well as the ability to cover significantportions of the HTTP message. All of these can be used to limit the attack surface.

11.11.Exposure of End-User Credentials to Client Instance

As a delegation protocol, one of the main goals of GNAP is to prevent the client software from beingexposed to any credentials or information about the end user or RO as a requirementof the delegation process. By using the variety of interaction mechanisms, the RO caninteract with the AS without ever authenticating to the client software and without the clientsoftware having to impersonate the RO through replay of their credentials.

Consequently, no interaction methods defined in this specification require the end user to enter theircredentials, but it is technologically possible for an extension to be defined to carry such values.Such an extension would be dangerous as it would allow rogue client software to directly collect, store,and replay the end user's credentials outside of any legitimate use within a GNAP request.

The concerns of such an extension could be mitigated through use of a challenge and responseunlocked by the end user's credentials. For example, the AS presents a challenge as part ofan interaction start method, and the client instance signs that challenge using a key derivedfrom a password presented by the end user. It would be possible for the client software tocollect this password in a secure software enclave without exposing the password to the restof the client software or putting it across the wire to the AS. The AS can validate this challengeresponse against a known password for the identified end user. While an approach such as this doesnot remove all of the concerns surrounding such a password-based scheme, it is at leastpossible to implement in a more secure fashion than simply collecting and replayingthe password. Even so, such schemes should only ever be used by trusted clients due tothe ease of abusing them.

11.12.Mixing Up Authorization Servers

If a client instance is able to work with multiple ASes simultaneously, it is possiblefor an attacker to add a compromised AS to the client instance's configuration and cause theclient software to start a request at the compromised AS. This AS could then proxy the client'srequest to a valid AS in order to attempt to get the RO to approve access forthe legitimate client instance.

A client instance needs to always be aware of which AS it is talking to throughout a grant process and ensurethat any callback for one AS does not get conflated with the callback to different AS. The interaction finishhash calculation inSection 4.2.3 allows a client instance to protect against this kind of substitution, but only ifthe client instance validates the hash. If the client instance does not use an interaction finish methodor does not check the interaction finish hash value, the compromised AS can be granted a validaccess token on behalf of the RO. See Sections 4.5.5 and 5.5 of[AXELAND2021] for detailsof one such attack, which has been addressed in this document by including the grant endpointin the interaction hash calculation. Note that the client instance still needs to validate the hash forthe attack to be prevented.

11.13.Processing of Client-Presented User Information

GNAP allows the client instance to present assertions and identifiers of the current user to the AS aspart of the initial request. This information should only ever be taken by the AS as a hint, since theAS has no way to tell if the represented person is present at the client software without usingan interaction mechanism. This information does not guarantee the given user is there, but it doesconstitute a statement by the client software that the AS can take into account.

For example, if a specific user is claimed to be present prior to interaction, but a different useris shown to be present during interaction, the AS can either determine this to be an error or signalto the client instance through returned subject information that the current user has changed fromwhat the client instance thought. This user information can also be used by the AS to streamline theinteraction process when the user is present. For example, instead of having the user type in theiraccount identifier during interaction at a redirected URI, the AS can immediately challenge the userfor their account credentials. Alternatively, if an existing session is detected, the AS candetermine that it matches the identifier provided by the client and subsequently skip an explicitauthentication event by the RO.

In cases where the AS trusts the client software more completely, due to policyor previous approval of a given client instance, the AS can take this user information as astatement that the user is present and could issue access tokens and release subject informationwithout interaction. The AS should only take such action in very limited circumstances, as aclient instance could assert whatever it likes for the user's identifiers in its request. The AScan limit the possibility of this by issuing randomized opaque identifiers to client instances torepresent different end-user accounts after an initial login.

When a client instance presents an assertion to the AS, the AS needs to evaluate that assertion. Sincethe AS is unlikely to be the intended audience of an assertion held by the client software, the AS willneed to evaluate the assertion in a different context. Even in this case, the AS can still evaluatethat the assertion was generated by a trusted party, was appropriately signed, and is withinany time validity windows stated by the assertion. If the client instance's audience identifieris known to the AS and can be associated with the client instance's presented key, the AS can alsoevaluate that the appropriate client instance is presenting the claimed assertion. All of thiswill prevent an attacker from presenting a manufactured assertion or one captured from anuntrusted system. However, without validating the audience of the assertion, a captured assertioncould be presented by the client instance to impersonate a given end user. In such cases, the assertionoffers little more protection than a simple identifier would.

A special case exists where the AS is the generator of the assertion being presented by theclient instance. In these cases, the AS can validate that it did issue the assertion andit is associated with the client instance presenting the assertion.

11.14.Client Instance Pre-registration

Each client instance is identified by its own unique key, and for some kinds of client software such as aweb server or backend system, this identification can be facilitated by registering a single key for a pieceof client software ahead of time. This registration can be associated with a set of display attributes tobe used during the authorization process to identify the client software to the user. In these cases,it can be assumed that only one instance of client software will exist, likely to serve many differentusers.

A client's registration record needs to include its identifying key. Furthermore, it is the case thatany clients using symmetric cryptography for key proofing mechanisms need to have their keys pre-registered.The registration should also include any information that would aid in the authorization process, such asa display name and logo.The registration record can also limit a given client toask for certain kinds of information or usespecific interaction mechanisms at runtime.

It also is sensible to pre-register client instances when the software is acting autonomously, withoutthe need for a runtime approval by an RO or any interaction with an end user. In these cases,an AS needs to rely on the trust decisions that have been determined prior to runtime to determinewhat rights and tokens to grant to a given client instance.

However, it does not make sense to pre-register many types of clients. Single-page applications (SPAs) andmobile/desktop applications in particular present problems with pre-registration. For SPAs, the instancesare ephemeral in nature, and long-term registration of a single instance leads to significant storage andmanagement overhead at the AS. For mobile applications, each installation of the client software isa separate instance, and sharing a key among all instances would be detrimental to security as thecompromise of any single installation would compromise all copies for all users.

An AS can treat these classes of client software differently from each other, perhaps by allowing accessto certain high-value APIs only to pre-registered known clients or by requiring an active end-userdelegation of authority to any client software not pre-registered.

An AS can also provide warnings and caveats to ROs during the authorization process, allowingthe user to make an informed decision regarding the software they are authorizing. For example, if the AShas vetted the client software and this specific instance, it can present a different authorizationscreen compared to a client instance that is presenting all of its information at runtime.

Finally, an AS can use platform attestations and other signals from the client instance at runtimeto determine whether or not the software making the request is legitimate. The details of suchattestations are outside the scope of this specification, but theclient portion of a grant requestprovides a natural extension point to such information through the "GNAP Client Instance Fields" registry (Section 10.7).

11.15.Client Instance Impersonation

If client instances are allowed to set their own user-facing display information, such as a display name and websiteURL, a malicious client instance could impersonate legitimate client software for the purposes of trickingusers into authorizing the malicious client.

Requiring clients to pre-register does not fully mitigate this problem since many pre-registrationsystems have self-service portals for management of client registration, allowing authenticated developersto enter self-asserted information into the management portal.

An AS can mitigate this by actively filtering all self-asserted values presented by client software,both dynamically as part of GNAP and through a registration portal, to limit the kinds of impersonation that could be done.

An AS can also warn the RO about the provenance of the information it is displaying, allowingthe RO to make a more informed delegation decision. For example, an AS can visually differentiatebetween a client instance that can be traced back to a specific developer's registration and aninstance that has self-asserted its own display information.

11.16.Client-Hosted Logo URI

Thelogo_uri client display field defined inSection 2.3.2 allows the client instance to specifya URI from which an image can be fetched for display during authorization decisions. When the URI points toan externally hosted resource (as opposed to a data: URI), thelogo_uri field presents challenges in addition to theconsiderations inSection 11.15.

When alogo_uri is externally hosted, the client software (or the host of the asset) can change the contents ofthe logo without informing the AS. Since the logo is considered an aspect of the client software's identity,this flexibility allows for a more dynamically managed client instance that makes use of the distributed systems.

However, this same flexibility allows the host of the asset to change the hosted file in a malicious way,such as replacing the image content with malicious software for download or imitating a different pieceof client software. Additionally, the act of fetching the URI could accidentally leak information to the image hostin the HTTP Referer header field, if one is sent. Even though GNAP intentionally does not include securityparameters in front-channel URIs wherever possible, the AS still should take steps to ensure thatthis information does not leak accidentally, such as setting a referrer policy on image links ordisplaying images only from pages served from a URI with no sensitive security or identity information.

To avoid these issues, the AS can insist on the use of data: URIs, though that might not be practical for alltypes of client software. Alternatively, the AS could pre-fetch the content of the URI and present its own copyto the RO instead. This practice opens the AS to potential SSRF attacks, as discussed inSection 11.34.

11.17.Interception of Information in the Browser

Most information passed through the web browser is susceptible to interception and possible manipulation byelements within the browser such as scripts loaded within pages. Information in the URI is exposedthrough browser and server logs, and it can also leak to other parties through HTTPReferer headers.

GNAP's design limits the information passed directly through the browser, allowing for opaque URIs in most circumstances.For the redirect-based interaction finish mechanism, named query parameters are used to carryunguessable opaque values. For these, GNAP requires creation and validation of a cryptographichash to protect the query parameters added to the URI and associate them with an ongoing grantprocess and values not passed in the URI. The client instance has to properly validate this hash to prevent an attacker frominjecting an interaction reference intended for a different AS or client instance.

Several interaction start mechanisms use URIs created by the AS and passed to the client instance.While these URIs are opaque to the client instance, it's possible for the AS to include parameters,paths, and other pieces of information that could leak security data or be manipulated by a partyin the middle of the transaction. An AS implementation can avoid this problem by creating URIsusing unguessable values that are randomized for each new grant request.

11.18.Callback URI Manipulation

The callback URI used in interaction finish mechanisms is defined by the client instance. This URI isopaque to the AS but can contain information relevant to the client instance's operations. Inparticular, the client instance can include state information to allow the callback request tobe associated with an ongoing grant request.

Since this URI is exposed to the end user's browser, it is susceptible to both logging and manipulationin transit before the request is made to the client software. As such, a client instance shouldnever put security-critical or private information into the callback URI in a cleartext form. For example,if the client software includes a post-redirect target URI in its callback URI to the AS, this target URIcould be manipulated by an attacker, creating an open redirector at the client. Instead,a client instance can use an unguessable identifier in the URI that can then be used by the clientsoftware to look up the details of the pending request. Since this approach requires some form of statefulnessby the client software during the redirection process, clients that are not capable of holding statethrough a redirect should not use redirect-based interaction mechanisms.

11.19.Redirection Status Codes

As described in[OAUTH-SEC-TOPICS], a server should never use HTTP status code 307 (Temporary Redirect) to redirect a request that potentially contains user credentials. If an HTTP redirect is used for such a request, HTTP status code 303 (See Other) should be used instead.

Status code 307 (Temporary Redirect), as defined in the HTTP standard[HTTP], requires the user agent to preserve the method and content of a request, thus submitting the content of the POST request to the redirect target. In the HTTP standard[HTTP], only status code 303 (See Other) unambiguously enforces rewriting the HTTP POST request to an HTTP GET request, which eliminates the POST content from the redirected request. For all other status codes, including status code 302 (Found), user agents are allowed to keep a redirected POST request as a POST and thus can resubmit the content.

The use of status code 307 (Temporary Redirect) results in a vulnerability when using theredirect interaction finish method (Section 3.3.5). With this method, the ASpotentially prompts the RO to enter their credentials in a form that is then submitted back to theAS (using an HTTP POST request). The AS checks the credentials and, if successful, may immediatelyredirect the RO to the client instance's redirect URI. Due to the use of status code 307 (Temporary Redirect), the RO'suser agent now transmits the RO's credentials to the client instance. A malicious client instancecan then use the obtained credentials to impersonate the RO at the AS.

Redirection away from the initial URI in an interaction session could also leak information found in thatinitial URI through the HTTP Referer header field, which would be sent by the user agent to the redirecttarget. To avoid such leakage, a server can first redirect to an internal interstitial page without any identifyingor sensitive information on the URI before processing the request. When the user agent is ultimatelyredirected from this page, no part of the original interaction URI will be found in the Referer header.

11.20.Interception of Responses from the AS

Responses from the AS contain information vital to both the security and privacy operations ofGNAP. This information includes nonces used in cryptographic calculations, Subject Identifiers,assertions, public keys, and information about what client software is requesting and was granted.

In addition, if bearer tokens are used or keys are issued alongside a bound access token, theresponse from the AS contains all information necessary for use of the contained access token. Anyparty that is capable of viewing such a response, such as an intermediary proxy, would be ableto exfiltrate and use this token. If the access token is instead bound to the client instance'spresented key, intermediaries no longer have sufficient information to use the token. They canstill, however, gain information about the end user as well as the actions of the client software.

11.21.Key Distribution

GNAP does not define ways for the client instances keys to be provided to the client instances,particularly in light of how those keys are made known to the AS. These keys could begenerated dynamically on the client software or pre-registered at the AS in a static developer portal.The keys for client instances could also be distributed as part of the deployment process of instancesof the client software. For example, an application installation framework could generatea key pair for each copy of client software and then both install it into the client softwareupon installation and register that instance with the AS.

Alternatively, it's possible for the AS to generate keys to be used with access tokens thatare separate from the keys used by the client instance to request tokens. In this method,the AS would generate the asymmetric key pair or symmetric key and return the public key or keyreference to the client instance alongside the accesstoken itself. The means for the AS to return generated key values to the client instanceare out of scope, since GNAP does not allow the transmission of private or shared keyinformation within the protocol itself.

Additionally, if the token is bound to a key other than the client instance's presented key, thisopens a possible attack surface for an attacker's AS to request an access token and then substitutetheir own key material in the response to the client instance. The attacker's AS would need tobe able to use the same key as the client instance, but this setup would allow an attacker's ASto make use of a compromised key within a system. This attack can be prevented by only bindingaccess tokens to the client instance's presented keys and by having client instances have a strongassociation between which keys they expect to use and the AS they expect to use them on.This attack is also only able to be propagated on client instances that talk to more thanone AS at runtime, which can be limited by the client software.

11.22.Key Rotation Policy

When keys are rotated, there could be a delay in the propagation of that rotation to various components in the AS's ecosystem. The AS can define its own policy regarding the timeout of the previously bound key, either making it immediately obsolete or allowing for a limited grace period during which both the previously bound key and the current key can be used for signing requests. Such a grace period can be useful when there are multiple running copies of the client that are coordinated with each other. For example, the client software could be deployed as a cloud service with multiple orchestrated nodes. Each of these copies is deployed using the same key; therefore, all the nodes represent the same client instance to the AS. In such cases, it can be difficult, or even impossible, to update the keys on all these copies in the same instant.

The need to accommodate such known delays in the system needs to be balanced with the risk of allowing an old key to still be used. Narrowly restricting the exposure opportunities for exploit at the AS in terms of time, place, and method makes exploit significantly more difficult, especially if the exception happens only once. For example, the AS can reject requests from the previously bound key (or any previous one before it) to cause rotation to a new key or at least ensure that the rotation happens in an idempotent way to the same new key.

See also the related considerations for token values inSection 11.33.

11.23.Interaction Finish Modes and Polling

During the interaction process, the client instance usually hands control of the user experienceover to another component, be it the system browser, another application, or some actionthe RO is instructed to take on another device. By using an interaction finishmethod, the client instance can be securely notified by the AS when the interaction is completedand the next phase of the protocol should occur. This process includes information that theclient instance can use to validate the finish call from the AS and prevent some injection,session hijacking, and phishing attacks.

Some types of client deployment are unable to receive an interaction finish message.Without an interaction finish method to notify it, the client instance will need to poll thegrant continuation API while waiting for the RO to approve or deny the request.An attacker could take advantage of this situation by capturing the interaction startparameters and phishing a legitimate user into authorizing the attacker's waitingclient instance, which would in turn have no way of associating the completed interactionfrom the targeted user with the start of the request from the attacker.

However, it is important to note that this pattern is practically indistinguishablefrom some legitimate use cases. For example, a smart device emits a code forthe RO to enter on a separate device. The smart device has to pollbecause the expected behavior is that the interaction will take place on the separatedevice, without a way to return information to the original device's context.

As such, developers need to weigh the risks of forgoing an interaction finishmethod against the deployment capabilities of the client software and itsenvironment. Due to the increased security, an interaction finish method shouldbe employed whenever possible.

11.24.Session Management for Interaction Finish Methods

When using an interaction finish method such asredirect orpush, the client instance receivesan unsolicited inbound request from an unknown party over HTTPS. The clientinstance needs to be able to successfully associate this incoming request with a specific pendinggrant request being managed by the client instance. If the client instance is not careful and precise aboutthis, an attacker could associate their own session at the client instance with a stolen interactionresponse. The means of preventing this vary by the type of client software and interaction methods in use.Some common patterns are enumerated here.

If the end user interacts with the client instance through a web browser and theredirectinteraction finish method is used, the client instance can ensure that the incoming HTTP requestfrom the finish method is presented in the same browser session that the grant request wasstarted in. This technique is particularly useful when theredirect interaction start modeis used as well, since in many cases, the end user will follow the redirection with thesame browser that they are using to interact with the client instance.The client instance can then store the relevant pending grant information in thesession, either in the browser storage directly (such as with a single-page application) orin an associated session store on a backend server. In both cases, when the incoming requestreaches the client instance, the session information can be used to ensure that the same partythat started the request is present as the request finishes.

Ensuring that the same party that started a request is present when that request finishes canprevent phishing attacks, where an attacker starts a request at an honest client instance andtricks an honest RO into authorizing it. For example, if an honest end user (that also acts as theRO) wants to start a request through a client instance controlled by the attacker, the attacker canstart a request at an honest client instance and then redirect the honest end user to theinteraction URI from the attackers session with the honest client instance. If the honest end userthen fails to realize that they are not authorizing the attacker-controlled client instance (with whichit started its request) but instead the honest client instance when interacting with the AS, the attacker'ssession with the honest client instance would be authorized. This would give the attacker access tothe honest end user's resources that the honest client instance is authorized to access. However,if after the interaction, the AS redirects the honest end user back to the client instance whosegrant request the end user just authorized, the honest end user is redirected to the honest clientinstance. The honest client instance can then detect that the end user is not the party that started therequest, since the request at the honest client instance was started by theattacker. This detection can prevent the attack. This is related to the discussion inSection 11.15, because againthe attack can be prevented by the AS informing the user as much as possible about the clientinstance that is to be authorized.

If the end user does not interact with the client instance through a web browser or the interactionstart method does not use the same browser or device that the end user is interacting through(such as the launch of a second device through a scannable code or presentation of a user code), theclient instance will not be able to strongly associate an incoming HTTP request with an establishedsession with the end user. This is also true when thepush interaction finish method is used,since the HTTP request comes directly from the interaction component of the AS. In thesecircumstances, the client instance can at least ensure that the incoming HTTPrequest can be uniquely associated with an ongoing grant request by making the interaction finishcallback URI unique for the grant when making the interaction request (Section 2.5.2).Mobile applications and other client instances that generally serve only a single end user at a timecan use this unique incoming URL to differentiate between a legitimate incoming request andan attacker's stolen request.

11.25.Calculating Interaction Hash

While the use of GNAP's signing mechanisms and token-protected grant API providessignificant security protections to the protocol, the interaction reference mechanismis susceptible to monitoring, capture, and injection by an attacker. To combat this, GNAPrequires the calculation and verification of an interaction hash. A client instancemight be tempted to skip this step, but doing so leaves the client instance open toinjection and manipulation by an attacker that could lead to additional issues.

The calculation of the interaction hash value provides defense in depth, allowing a clientinstance to protect itself from spurious injection of interaction references when using aninteraction finish method. The AS is protected during this attack through thecontinuation access token being bound to the expected interaction reference,but without hash calculation, the attacker could cause the client to make anHTTP request on command, which could itself be manipulated -- for example, by includinga malicious value in the interaction reference designed to attack the AS.With both of these in place, an attacker attempting to substitute the interaction referenceis stopped in several places.

UserAttackerClientASInstance12345||6ABCD||E7FG
Figure 11:Interaction Hash Attack

Prerequisites: The client instance can allow multiple end users to access the same AS. The attacker is attempting to associate their rights with the target user's session.

  • (1) The attacker starts a session at the client instance.

  • (2) The client instance creates a grant request with nonce CN1.

  • (3) The AS responds to the grant request with a need to interact, nonce SN1, and a continuation token, CT1.

  • (4) The client instructs the attacker to interact at the AS.

  • (5) The attacker interacts at the AS.

  • (6) The AS completes the interact finish with interact reference IR1 and interact hash IH1 calculated from (CN1 + SN1 + IR1 + AS). The attacker prevents IR1 from returning to the client instance.

  • (A) The target user starts a session at the client instance.

  • (B) The client instance creates a grant request with nonce CN2.

  • (C) The AS responds to the grant request with a need to interact, nonce SN2, and a continuation token, CT2.

  • (D) The client instance instructs the user to interact at the AS.

  • (E) The target user interacts at the AS.

  • (7) Before the target user can complete their interaction, the attacker delivers their own interact reference IR1 into the user's session. The attacker cannot calculate the appropriate hash because the attacker does not have access to CN2 and SN2.

  • (F) The target user triggers the interaction finish in their own session with the attacker's IR1.

  • (G) If the client instance is checking the interaction hash, the attack stops here because the hash calculation of (CN2 + SN2 + IR1 + AS) will fail. If the client instance does not check the interaction hash, the client instance will be tricked into submitting the interaction reference to the AS. Here, the AS will reject the interaction request because it is presented against CT2 and not CT1 as expected. However, an attacker who has potentially injected CT1 as the value of CT2 would be able to continue the attack.

Even with additional checks in place, client instances using interaction finish mechanisms are responsiblefor checking the interaction hash to provide security to the overall system.

11.26.Storage of Information during Interaction and Continuation

When starting an interactive grant request, a client application has a number of protocol elementsthat it needs to manage, including nonces, references, keys, access tokens, and other elements.During the interaction process, the client instance usually hands control of the user experienceover to another component, be it the system browser, another application, or some actionthe RO is instructed to take on another device. In order for the client instanceto make its continuation call, it will need to recall all of these protocol elements at a future time. Usually,this means the client instance will need to store these protocol elements in some retrievablefashion.

If the security protocol elements are stored on the end user's device, such as in browserstorage or in local application data stores, capture and exfiltration of this information couldallow an attacker to continue a pending transaction instead of the client instance. Clientsoftware can make use of secure storage mechanisms, including hardware-based key and datastorage, to prevent such exfiltration.

Note that in GNAP, the client instance has to choose its interaction finish URI prior to makingthe first call to the AS. As such, the interaction finish URI will often have a unique identifierfor the ongoing request, allowing the client instance to access the correct portion of itsstorage. Since this URI is passed to other parties and often used through a browser,this URI should not contain any security-sensitive information that would bevaluable to an attacker, such as any token identifier, nonce, or user information. Instead, acryptographically random value is suggested, and that value should be used to index intoa secure session or storage mechanism.

11.27.Denial of Service (DoS) through Grant Continuation

When a client instance starts off an interactive process, it will eventually need to continue the grantrequest in a subsequent message to the AS. It's possible for a naive client implementation to continuouslysend continuation requests to the AS while waiting for approval, especially if no interactionfinish method is used. Such constant requests could overwhelm the AS's ability to respond to boththese and other requests.

To mitigate this for well-behaved client software, the continuation response contains await parameterthat is intended to tell the client instance how long it should wait until making its next request.This value can be used to back off client software that is checking too quickly by returning increasingwait times for a single client instance.

If client software ignores thewait value and makes its continuation calls too quickly or if theclient software assumes the absence of thewait values means it should poll immediately, the AScan choose to return errors to the offending client instance, including possibly canceling theongoing grant request. With well-meaning client software, these errors can indicate a need to changethe client software's programmed behavior.

11.28.Exhaustion of Random Value Space

Several parts of the GNAP process make use of unguessable randomized values, such as nonces,tokens, user codes, and randomized URIs. Since these values are intended to be unique, a sufficientlypowerful attacker could make a large number of requests to trigger generation of randomizedvalues in an attempt to exhaust the random number generation space. While this attack isparticularly applicable to the AS, client software could likewise be targeted by an attackertriggering new grant requests against an AS.

To mitigate this, software can ensure that its random values are chosen from a significantlylarge pool so that exhaustion of that pool is prohibitive for an attacker. Additionally, therandom values can be time-boxed in such a way that their validity windows are reasonably short.Since many of the random values used within GNAP are used within limited portions of the protocol,it is reasonable for a particular random value to be valid for only a small amount of time.For example, the nonces used for interaction finish hash calculation need only to be valid whilethe client instance is waiting for the finish callback and can be functionally expiredwhen the interaction has completed. Similarly, artifacts like access tokens and the interactionreference can be limited to have lifetimes tied to their functional utility. Finally, eachdifferent category of artifact (nonce, token, reference, identifier, etc.) can begenerated from a separate random pool of values instead of a single global value space.

11.29.Front-Channel URIs

Some interaction methods in GNAP make use of URIs accessed through the end user's browser,known collectively as front-channel communication. These URIs are most notably present intheredirect interactionstart method and theredirect interactionfinish mode. Sincethese URIs are intended to be given to the end user, the end user and their browser will besubjected to anything hosted at that URI including viruses, malware, and phishing scams. Thiskind of risk is inherent to all redirection-based protocols, including GNAP, when used in this way.

When talking to a new or unknown AS, a client instance might want to check the URI from theinteractionstart against a blocklist and warn the end user before redirecting them. Manyclient instances will provide an interstitial message prior to redirection in order to preparethe user for control of the user experience being handed to the domain of the AS, and such amethod could be used to warn the user of potential threats (for instance, a rogue AS impersonatinga well-known service provider). Client software can also prevent this by managing an allowlistof known and trusted ASes.

Alternatively, an attacker could start a GNAP request with a known and trusted AS but includetheir own attack site URI as the callback for the redirectfinish method. The attacker would then sendthe interactionstart URI to the victim and get them to click on it. Since the URI is atthe known AS, the victim is inclined to do so. The victim will then be prompted to approve theattacker's application, and in most circumstances, the victim will then be redirected to theattacker's site whether or not the user approved the request. The AS could mitigate this partiallyby using a blocklist and allowlist of interactionfinish URIs during the client instance'sinitial request, but this approach can be especially difficult if the URI has any dynamic portionchosen by the client software. The AS can couple these checks with policies associated with theclient instance that has been authenticated in the request. If the AS has any doubt about theinteraction finish URI, the AS can provide an interstitial warning to the end user beforeprocessing the redirect.

Ultimately, all protocols that use redirect-based communication through the user's browser aresusceptible to having an attacker try to co-opt one or more of those URIs in order to harm theuser. It is the responsibility of the AS and the client software to provide appropriate warnings,education, and mitigation to protect end users.

11.30.Processing Assertions

Identity assertions can be used in GNAP to convey subject information, both from the AS to theclient instance in a response (Section 3.4) and from the client instance to the AS ina request (Section 2.2). In both of these circumstances, when an assertion is passed inGNAP, the receiver of the assertion needs to parse and process the assertion. As assertions arecomplex artifacts with their own syntax and security, special care needs to be taken to prevent theassertion values from being used as an attack vector.

All assertion processing needs to account for the security aspects of the assertion format inuse. In particular, the processor needs to parse the assertion from a JSON string objectand apply the appropriate cryptographic processes to ensure the integrity of the assertion.

For example, when SAML 2.0 assertions are used, the receiver has to parse an XML document. There aremany well-known security vulnerabilities in XML parsers, and the XML standard itself can beattacked through the use of processing instructions and entity expansions to cause problemswith the processor. Therefore, any system capable of processing SAML 2.0 assertions also needs tohave a secure and correct XML parser. In addition to this, the SAML 2.0 specification uses XMLSignatures, which have their own implementation problems that need to be accounted for. Similarrequirements exist for OpenID Connect ID Token, which is based on the JWT formatand the related JOSE cryptography suite.

11.31.Stolen Token Replay

If a client instance can request tokens at multiple ASes and the client instance uses the same keysto make its requests across those different ASes, then it is possible for an attacker to replay astolen token issued by an honest AS from a compromised AS, thereby binding the stolen token tothe client instance's key in a different context. The attacker can manipulate the client instanceinto using the stolen token at an RS, particularly at an RS that is expecting a token from thehonest AS. Since the honest AS issued the token and the client instance presents the token withits expected bound key, the attack succeeds.

This attack has several preconditions. In this attack, the attacker does not need access to theclient instance's key and cannot use the stolen token directly at the RS, but the attacker is ableto get the access token value in some fashion. The client instance also needs to be configured totalk to multiple ASes, including the attacker's controlled AS. Finally, the client instance needsto be able to be manipulated by the attacker to call the RS while using a token issued from thestolen AS. The RS does not need to be compromised or made to trust the attacker's AS.

To protect against this attack, the client instance can use a different key for each AS that ittalks to. Since the replayed token will be bound to the key used at the honest AS, theuncompromised RS will reject the call since the client instance will be using the key used atthe attacker's AS instead with the same token.When the MTLS key proofing method is used, a client instance can use self-signedcertificates to use a different key for each AS that it talks to, as discussed inSection 11.4.

Additionally, the client instance can keep a strong association between the RS and a specific ASthat it trusts to issue tokens for that RS. This strong binding also helps against some forms ofAS mix-up attacks (Section 11.12). Managing this binding is outside the scope of this specification,but it can be managed either as a configuration element for the client instance or dynamicallythrough discovering the AS from the RS (Section 9.1).

The details of this attack, with additional discussion and considerations, are available in Section 3.2 of[HELMSCHMIDT2022].

11.32.Self-Contained Stateless Access Tokens

The contents and format of the access token are at the discretion of the AS and are opaqueto the client instance within GNAP. As discussed in[GNAP-RS], the AS and RS can make use of stateless access tokenswith an internal structure and format. These access tokens allow an RS to validate the token withouthaving to make any external calls at runtime, allowing for benefits in some deployments, thediscussion of which is outside the scope of this specification.

However, the use of such self-contained access tokens has an effect on the ability of the AS toprovide certain functionality defined within this specification. Specifically, since the accesstoken is self-contained, it is difficult or impossible for an AS to signal to all RSs within anecosystem when a specific access token has been revoked. Therefore, an AS in such an ecosystemshould probably not offer token revocation functionality to client instances, since the clientinstance's calls to such an endpoint are effectively meaningless. However, a client instance callingthe token revocation function will also throw out its copy of the token, so such a placebo endpointmight not be completely meaningless. Token rotation is similarly difficult because the AS has torevoke the old access token after a rotation call has been made. If the access tokens arecompletely self-contained and non-revocable, this means that there will be a period of time duringwhich both the old and new access tokens are valid and usable, which is an increased security riskfor the environment.

These problems can be mitigated by keeping the validity time windows of self-contained access tokensreasonably short, limiting the time after a revocation event that a revoked token could be used.Additionally, the AS could proactively signal to RSs under its control identifiers for revokedtokens that have yet to expire. This type of information push would be expected to be relativelysmall and infrequent, and its implementation is outside the scope of this specification.

11.33.Network Problems and Token and Grant Management

If a client instance makes a call to rotate an access token but the network connection is droppedbefore the client instance receives the response with the new access token, the system as a wholecan end up in an inconsistent state, where the AS has already rotated the old access token andinvalidated it, but the client instance only has access to the invalidated access token and not thenewly rotated token value. If the client instance retries the rotation request, it would failbecause the client is no longer presenting a valid and current access token. A similar situationcan occur during grant continuation, where the same client instance calls to continue or updatea grant request without successfully receiving the results of the update.

To combat this, bothgrant management (Section 5) and token management (Section 6) can be designed to beidempotent, where subsequent calls to the same function with the same credentials are meant toproduce the same results. For example, multiple calls to rotate the same access token need toresult in the same rotated token value, within a reasonable time window.

In practice, an AS can hold onto an old token value for such limited purposes. For example, tosupport rotating access tokens over unreliable networks, the AS receives the initial request torotate an access token and creates a new token value and returns it. The AS also marks the oldtoken value as having been used to create the newly rotated token value. If the AS sees the oldtoken value within a small enough time window, such as a few seconds since the first rotationattempt, the AS can return the same rotated access token value. Furthermore, once the system has seen thenewly rotated token in use, the original token can be discarded because the client instance hasproved that it did receive the token. The result of this is a system that iseventually self-consistent without placing an undue complexity burden on the client instanceto manage problematic networks.

11.34.Server-Side Request Forgery (SSRF)

There are several places within GNAP where a URI can be given to a party, causing it to fetch thatURI during normal operation of the protocol. If an attacker is able to control the value of one ofthese URIs within the protocol, the attacker could cause the target system to execute a request ona URI that is within reach of the target system but normally unavailable to the attacker. Examples include an attacker sending a URL ofhttp://localhost/admin to cause the server to access aninternal function on itself orhttps://192.168.0.14/ to call a service behind a firewall.Even if the attacker does not gain access to the results of the call, the side effects of suchrequests coming from a trusted host can be problematic to the security and sanctity of suchotherwise unexposed endpoints. This can be particularly problematic if such a URI is used tocall non-HTTP endpoints, such as remote code execution services local to the AS.

The most vulnerable place in this specification is thepush-based post-interaction finish method (Section 4.2.2), as the client instance isless trusted than the AS and can use this method to make the AS call an arbitrary URI. While it isnot required by the protocol, the AS can fetch other URIs provided by the client instance, such as the logoimage or home page, for verification or privacy-preserving purposes before displaying them to theRO as part of a consent screen. Even if the AS does not fetch these URIs, their use inGNAP's normal operation could cause an attack against the end user's browser as it fetches thesesame attack URIs. Furthermore, extensions to GNAP that allow or requireURI fetch could also be similarly susceptible, such as a system for having the AS fetch a clientinstance's keys from a presented URI instead of the client instance presenting the key by value.Such extensions are outside the scope of this specification, but any system deploying such anextension would need to be aware of this issue.

To help mitigate this problem, similar approaches that protect parties againstmalicious redirects (Section 11.29) can be used. For example, all URIs that can resultin a direct request being made by a party in the protocol can be filtered through an allowlist orblocklist. For example, an AS that supports thepush-based interactionfinish method can compare thecallback URI in the interaction request to a known URI for a pre-registered client instance, or itcan ensure that the URI is not on a blocklist of sensitive URLs such as internal network addresses.However, note that because these types of calls happen outside of the view of human interaction,it is not usually feasible to provide notification and warning to someone before the requestneeds to be executed, as is the case with redirection URLs. As such, SSRF is somewhat more difficultto manage at runtime, and systems should generally refuse to fetch a URI if unsure.

11.35.Multiple Key Formats

All keys presented by value are only allowed to be in a single format. While it would seembeneficial to allow keys to be sent in multiple formats in case the receiver doesn't understandone or more of the formats used, there are security issues with such a feature.If multiple keys formats are allowed,receivers of these key definitions would need to be able to make sure that it's the samekey represented in each field and not simply use one of the key formats without checking forequivalence. If equivalence is not carefully checked, it is possible for an attacker to inserttheir own key into one of the formats without needing to have control over the other formats. Thiscould potentially lead to a situation where one key is used by part of the system (such asidentifying the client instance) and a different key in a different format in the same message isused for other things (such as calculating signature validity). However, in such cases, it isimpossible for the receiver to ensure that all formats contain the same key information since it isassumed that the receiver cannot understand all of the formats.

To combat this, all keys presented by value have to be in exactly one supported format knownby the receiver as discussed inSection 7.1. In most cases, a client instance is going to be configured with its keys in asingle format, and it will simply present that format as is to the AS in its request. A clientinstance capable of multiple formats can use AS discovery (Section 9) to determine which formatsare supported, if desired. An AS should be generous in supporting many different key formats toallow different types of client software and client instance deployments. An AS implementationshould try to support multiple formats to allow a variety of client software to connect.

11.36.Asynchronous Interactions

GNAP allows the RO to be contacted by the AS asynchronously, outside the regular flow of theprotocol. This allows for some advanced use cases, such as cross-user authentication or informationrelease, but such advanced use cases have some distinct issues that implementors need to be fullyaware of before using these features.

First, in many applications, the return of subject information to the client instance couldindicate to the client instance that the end user is the party represented by that information,functionally allowing the end user to authenticate to the client application. While the details ofa fully functional authentication protocol are outside the scope of GNAP, it is a commonexercise for a client instance to request information about the end user. This is facilitatedby several interaction methods (Section 4.1) defined in GNAP that allow the end userto begin interaction directly with the AS. However, when the subject of the information isintentionally not the end user, the client application will need some way to differentiate betweenrequests for authentication of the end user and requests for information about a different user.Confusing these states could lead to an attacker having their account associated with a privilegeduser. Client instances can mitigate this by having distinct code paths for primary end-userauthentication and for requesting subject information about secondary users, such as in a call center.In such use cases, the client software used by the RO (the caller) and the end user(the agent) are generally distinct, allowing the AS to differentiate between the agent's corporate devicemaking the request and the caller's personal device approving the request.

Second, ROs that interact asynchronously do not usually have the same context as an end user in anapplication attempting to perform the task needing authorization. As such, the asynchronous requestsfor authorization coming to the RO from the AS might have very little to do with what the RO isdoing at the time. This situation can consequently lead to authorization fatigue on the part of theRO, where any incoming authorization request is quickly approved and dispatched without the ROmaking a proper verification of the request. An attacker can exploit this fatigue and get the ROto authorize the attacker's system for access. To mitigate this, AS systems deploying asynchronousauthorization should only prompt the RO when the RO is expecting such a request, and significantuser experience engineering efforts need to be employed to ensure that the RO can clearly make theappropriate security decision. Furthermore, audit capability and the ability to undo accessdecisions that may be ongoing are particularly important in the asynchronous case.

11.37.Compromised RS

An attacker may aim to gain access to confidential or sensitive resources. The measures for hardening and monitoring RS systems (beyond protection with access tokens) are out of the scope of this document, but the use of GNAP to protect a system does not absolve the RS of following best practices.GNAP generally considers that a breach can occur and therefore advises to prefer key-bound tokens whenever possible, which at least limits the impact of access token leakage by a compromised or malicious RS.

11.38.AS-Provided Token Keys

While the most common token-issuance pattern is to bind the access token to the client instance'spresented key, it is possible for the AS to provide a binding key along with an access token, asshown by thekey field of the token response inSection 3.2.1. This practice allowsfor an AS to generate and manage the keys associated with tokens independently of the keys knownto client instances.

If the key material is returned by value from the AS, then the client instance will simply use thiskey value when presenting the token. This can be exploited by an attacker to issue a compromised tokento an unsuspecting client, assuming that the client instance trusts the attacker's AS to issue tokensfor the target RS. In this attack, the attacker first gets a token bound to a key under the attacker'scontrol. This token is likely bound to an authorization or account controlled by the attacker.The attacker then reissues that same token to the client instance, this time acting as an AS. The attackercan return their own key to the client instance, tricking the client instance into using the attacker'stoken. Such an attack is also possible when the key is returned by reference, if the attackeris able to provide a reference meaningful to the client instance that references a key under the attacker'scontrol. This substitution attack is similar to some of the main issues found with bearer tokensas discussed inSection 11.9.

Returning a key with an access token should be limited to circumstances where both the client and AScan be verified to be honest and when the trade-off of not using a client instance's own keysis worth the additional risk.

12.Privacy Considerations

The privacy considerations in this section are modeled after the list of privacy threats in "Privacy Considerations for Internet Protocols"[RFC6973] and either explain how these threats are mitigated or advise how the threats relate to GNAP.

12.1.Surveillance

Surveillance is the observation or monitoring of an individual's communications or activities. Surveillance can be conducted by observers or eavesdroppers at any point along the communications path.

GNAP assumes the TLS protection used throughout the spec is intact. Without the protection of TLS, there are many points throughout the use of GNAP that could lead to possible surveillance. Even with the proper use of TLS, surveillance could occur by several parties outside of the TLS-protected channels, as discussed in the subsections below.

12.1.1.Surveillance by the Client

The purpose of GNAP is to authorize clients to be able to access information on behalf of a user. So while it is expected that the client may be aware of the user's identity as well as data being fetched for that user, in some cases, the extent of the client may be beyond what the user is aware of. For example, a client may be implemented as multiple distinct pieces of software, such as a logging service or a mobile application that reports usage data to an external backend service. Each of these pieces could gain information about the user without the user being aware of this action.

When the client software uses a hosted asset for its components, such as its logo image, the fetch of these assets can reveal user actions to the host. If the AS presents the logo URI to the RO in a browser page, the browser will fetch the logo URL from the authorization screen. This fetch will tell the host of the logo image that someone is accessing an instance of the client software and requesting access for it. This is particularly problematic when the host of the asset is not the client software itself, such as when a content delivery network is used.

12.1.2.Surveillance by the Authorization Server

The role of the AS is to manage the authorization of client instances to protect access to the user's data. In this role, the AS is by definition aware of each authorization of a client instance by a user. When the AS shares user information with the client instance, it needs to make sure that it has the permission from that user to do so.

Additionally, as part of the authorization grant process, the AS may be aware of which RSs the client intends to use an access token at. However, it is possible to design a system using GNAP in which this knowledge is not made available to the AS, such as by avoiding the use of thelocations object in the authorization request.

If the AS's implementation of access tokens is such that it requires an RS callback to the AS to validate them, then the AS will be aware of which RSs are actively in use and by which users and clients. To avoid this possibility, the AS would need to structure access tokens in such a way that they can be validated by the RS without notifying the AS that the token is being validated.

12.2.Stored Data

Several parties in the GNAP process are expected to persist data at leasttemporarily, if not semi-permanently, for the normal functioning of thesystem. If compromised, this could lead to exposure of sensitiveinformation. This section documents the potentially sensitive information eachparty in GNAP is expected to store for normal operation. Naturally, it ispossible for any party to store information related to protocol mechanics(such as audit logs, etc.) for longer than is technically necessary.

The AS is expected to store Subject Identifiers for users indefinitely, in order to be able to include them in the responses to clients. The AS is also expected to store client key identifiers associated with display information about the client, such as its name and logo.

The client is expected to store its client instance key indefinitely, in order to authenticate to the AS for the normal functioning of the GNAP flows. Additionally, the client will be temporarily storing artifacts issued by the AS during a flow, and these artifacts ought to be discarded by the client when the transaction is complete.

The RS is not required to store any state for its normal operation, as far as its part in implementing GNAP. Depending on the implementation of access tokens, the RS may need to cache public keys from the AS in order to validate access tokens.

12.3.Intrusion

Intrusion refers to the ability of various parties to send unsolicited messages or cause denial of service for unrelated parties.

If the RO is different from the end user, there is an opportunity for the end user to cause unsolicited messages to be sent to the RO if the system prompts the RO for consent when an end user attempts to access their data.

The format and contents of Subject Identifiers are intentionally not defined by GNAP. If the AS uses values for Subject Identifiers that are also identifiers for communication channels (e.g., an email address or phone number), this opens up the possibility for a client to learn this information when it was not otherwise authorized to access this kind of data about the user.

12.4.Correlation

The threat of correlation is the combination of various pieces of information related to an individual in a way that defies their expectations of what others know about them.

12.4.1.Correlation by Clients

The biggest risk of correlation in GNAP is when an AS returns stable, consistent user identifiers to multiple different applications. In this case, applications created by different parties would be able to correlate these user identifiers out of band in order to know which users they have in common.

The most common example of this in practice is tracking for advertising purposes, such that a client shares their list of user IDs with an ad platform that is then able to retarget ads to applications created by other parties. In contrast, a positive example of correlation is a corporate acquisition where two previously unrelated clients now do need to be able to identify the same user between the two clients, such as when software systems are intentionally connected by the end user.

Another means of correlation comes from the use of RS-first discovery (Section 9.1). A client instance that knows nothing other than an RS's URL could make an unauthenticated call to the RS and learn which AS protects the resources there. If the client instance knows something about the AS, such as it being a single-user AS or belonging to a specific organization, the client instance could, through association, learn things about the resource without ever gaining access to the resource itself.

12.4.2.Correlation by Resource Servers

Unrelated RSs also have an opportunity to correlate users if the AS includes stable user identifiers in access tokens or in access token introspection responses.

In some cases, an RS may not actually need to be able to identify users (such as an RS providing access to a company cafeteria menu, which only needs to validate whether the user is a current employee), so ASes should be thoughtful of when user identifiers are actually necessary to communicate to RSs for the functioning of the system.

However, note that the lack of inclusion of a user identifier in an access token may be a risk if there is a concern that two users may voluntarily share access tokens between them in order to access protected resources. For example, if a website wants to limit access to only people over 18, and such does not need to know any user identifiers, an access token may be issued by an AS contains only the claim "over 18". If the user is aware that this access token doesn't reference them individually, they may be willing to share the access token with a user who is under 18 in order to let them get access to the website. (Note that the binding of an access token to a non-extractable client instance key also prevents the access token from being voluntarily shared.)

12.4.3.Correlation by Authorization Servers

Clients are expected to be identified by their client instance key. If a particular client instance key is used at more than one AS, this could open up the possibility for multiple unrelated ASes to correlate client instances. This is especially a problem in the common case where a client instance is used by a single individual, as it would allow the ASes to correlate that individual between them. If this is a concern of a client, the client should use distinct keys with each AS.

12.5.Disclosure in Shared References

Throughout many parts of GNAP, the parties pass shared references between each other, sometimes in place of the values themselves (for example, theinteract_ref value used throughout the flow). These references are intended to be random strings and should not contain any private or sensitive data that could potentially leak information between parties.

13.References

13.1.Normative References

[BCP195]
Best Current Practice 195,<https://www.rfc-editor.org/info/bcp195>.
At the time of writing, this BCP comprises the following:
Moriarty, K. andS. Farrell,"Deprecating TLS 1.0 and TLS 1.1",BCP 195,RFC 8996,DOI 10.17487/RFC8996,,<https://www.rfc-editor.org/info/rfc8996>.
Sheffer, Y.,Saint-Andre, P., andT. Fossati,"Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)",BCP 195,RFC 9325,DOI 10.17487/RFC9325,,<https://www.rfc-editor.org/info/rfc9325>.
[HASH-ALG]
IANA,"Named Information Hash Algorithm Registry",<https://www.iana.org/assignments/named-information/>.
[HTTP]
Fielding, R., Ed.,Nottingham, M., Ed., andJ. Reschke, Ed.,"HTTP Semantics",STD 97,RFC 9110,DOI 10.17487/RFC9110,,<https://www.rfc-editor.org/info/rfc9110>.
[OIDC]
Sakimura, N.,Bradley, J.,Jones, M.,de Medeiros, B., andC. Mortimore,"OpenID Connect Core 1.0 incorporating errata set 2",,<https://openid.net/specs/openid-connect-core-1_0.html>.
[RFC2119]
Bradner, S.,"Key words for use in RFCs to Indicate Requirement Levels",BCP 14,RFC 2119,DOI 10.17487/RFC2119,,<https://www.rfc-editor.org/info/rfc2119>.
[RFC2397]
Masinter, L.,"The "data" URL scheme",RFC 2397,DOI 10.17487/RFC2397,,<https://www.rfc-editor.org/info/rfc2397>.
[RFC3339]
Klyne, G. andC. Newman,"Date and Time on the Internet: Timestamps",RFC 3339,DOI 10.17487/RFC3339,,<https://www.rfc-editor.org/info/rfc3339>.
[RFC3986]
Berners-Lee, T.,Fielding, R., andL. Masinter,"Uniform Resource Identifier (URI): Generic Syntax",STD 66,RFC 3986,DOI 10.17487/RFC3986,,<https://www.rfc-editor.org/info/rfc3986>.
[RFC4648]
Josefsson, S.,"The Base16, Base32, and Base64 Data Encodings",RFC 4648,DOI 10.17487/RFC4648,,<https://www.rfc-editor.org/info/rfc4648>.
[RFC5646]
Phillips, A., Ed. andM. Davis, Ed.,"Tags for Identifying Languages",BCP 47,RFC 5646,DOI 10.17487/RFC5646,,<https://www.rfc-editor.org/info/rfc5646>.
[RFC6749]
Hardt, D., Ed.,"The OAuth 2.0 Authorization Framework",RFC 6749,DOI 10.17487/RFC6749,,<https://www.rfc-editor.org/info/rfc6749>.
[RFC6750]
Jones, M. andD. Hardt,"The OAuth 2.0 Authorization Framework: Bearer Token Usage",RFC 6750,DOI 10.17487/RFC6750,,<https://www.rfc-editor.org/info/rfc6750>.
[RFC7468]
Josefsson, S. andS. Leonard,"Textual Encodings of PKIX, PKCS, and CMS Structures",RFC 7468,DOI 10.17487/RFC7468,,<https://www.rfc-editor.org/info/rfc7468>.
[RFC7515]
Jones, M.,Bradley, J., andN. Sakimura,"JSON Web Signature (JWS)",RFC 7515,DOI 10.17487/RFC7515,,<https://www.rfc-editor.org/info/rfc7515>.
[RFC7517]
Jones, M.,"JSON Web Key (JWK)",RFC 7517,DOI 10.17487/RFC7517,,<https://www.rfc-editor.org/info/rfc7517>.
[RFC8174]
Leiba, B.,"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words",BCP 14,RFC 8174,DOI 10.17487/RFC8174,,<https://www.rfc-editor.org/info/rfc8174>.
[RFC8259]
Bray, T., Ed.,"The JavaScript Object Notation (JSON) Data Interchange Format",STD 90,RFC 8259,DOI 10.17487/RFC8259,,<https://www.rfc-editor.org/info/rfc8259>.
[RFC8705]
Campbell, B.,Bradley, J.,Sakimura, N., andT. Lodderstedt,"OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens",RFC 8705,DOI 10.17487/RFC8705,,<https://www.rfc-editor.org/info/rfc8705>.
[RFC9111]
Fielding, R., Ed.,Nottingham, M., Ed., andJ. Reschke, Ed.,"HTTP Caching",STD 98,RFC 9111,DOI 10.17487/RFC9111,,<https://www.rfc-editor.org/info/rfc9111>.
[RFC9421]
Backman, A., Ed.,Richer, J., Ed., andM. Sporny,"HTTP Message Signatures",RFC 9421,DOI 10.17487/RFC9421,,<https://www.rfc-editor.org/info/rfc9421>.
[RFC9493]
Backman, A., Ed.,Scurtescu, M., andP. Jain,"Subject Identifiers for Security Event Tokens",RFC 9493,DOI 10.17487/RFC9493,,<https://www.rfc-editor.org/info/rfc9493>.
[RFC9530]
Polli, R. andL. Pardue,"Digest Fields",RFC 9530,DOI 10.17487/RFC9530,,<https://www.rfc-editor.org/info/rfc9530>.
[SAML2]
Cantor, S., Ed.,Kemp, J., Ed.,Philpott, R., Ed., andE. Maler, Ed.,"Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0",OASIS Standard,,<https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf>.

13.2.Informative References

[Auth-Schemes]
IANA,"HTTP Authentication Schemes",<https://www.iana.org/assignments/http-authschemes>.
[AXELAND2021]
Axeland, Å. andO. Oueidat,"Security Analysis of Attack Surfaces on the Grant Negotiation and Authorization Protocol",Master's thesis, Department of Computer Science and Engineering, Chalmers University of Technology and University of Gothenburg,,<https://hdl.handle.net/20.500.12380/304105>.
[GNAP-REG]
IANA,"Grant Negotiation and Authorization Protocol (GNAP)",<https://www.iana.org/assignments/gnap>.
[GNAP-RS]
Richer, J., Ed. andF. Imbault,"Grant Negotiation and Authorization Protocol Resource Server Connections",Work in Progress,Internet-Draft, draft-ietf-gnap-resource-servers-09,,<https://datatracker.ietf.org/doc/html/draft-ietf-gnap-resource-servers-09>.
[HELMSCHMIDT2022]
Helmschmidt, F.,"Security Analysis of the Grant Negotiation and Authorization Protocol",Master's thesis, Institute of Information Security, University of Stuggart,DOI 10.18419/opus-12203,,<http://dx.doi.org/10.18419/opus-12203>.
[MediaTypes]
IANA,"Media Types",<https://www.iana.org/assignments/media-types>.
[OAUTH-SEC-TOPICS]
Lodderstedt, T.,Bradley, J.,Labunets, A., andD. Fett,"OAuth 2.0 Security Best Current Practice",Work in Progress,Internet-Draft, draft-ietf-oauth-security-topics-29,,<https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics-29>.
[promise-theory]
Bergstra, J. andM. Burgess,"Promise Theory: Principles and Applications",Second Edition, XtAxis Press,,<http://markburgess.org/promises.html>.
[RFC2046]
Freed, N. andN. Borenstein,"Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types",RFC 2046,DOI 10.17487/RFC2046,,<https://www.rfc-editor.org/info/rfc2046>.
[RFC4107]
Bellovin, S. andR. Housley,"Guidelines for Cryptographic Key Management",BCP 107,RFC 4107,DOI 10.17487/RFC4107,,<https://www.rfc-editor.org/info/rfc4107>.
[RFC6202]
Loreto, S.,Saint-Andre, P.,Salsano, S., andG. Wilkins,"Known Issues and Best Practices for the Use of Long Polling and Streaming in Bidirectional HTTP",RFC 6202,DOI 10.17487/RFC6202,,<https://www.rfc-editor.org/info/rfc6202>.
[RFC6838]
Freed, N.,Klensin, J., andT. Hansen,"Media Type Specifications and Registration Procedures",BCP 13,RFC 6838,DOI 10.17487/RFC6838,,<https://www.rfc-editor.org/info/rfc6838>.
[RFC6973]
Cooper, A.,Tschofenig, H.,Aboba, B.,Peterson, J.,Morris, J.,Hansen, M., andR. Smith,"Privacy Considerations for Internet Protocols",RFC 6973,DOI 10.17487/RFC6973,,<https://www.rfc-editor.org/info/rfc6973>.
[RFC7518]
Jones, M.,"JSON Web Algorithms (JWA)",RFC 7518,DOI 10.17487/RFC7518,,<https://www.rfc-editor.org/info/rfc7518>.
[RFC8126]
Cotton, M.,Leiba, B., andT. Narten,"Guidelines for Writing an IANA Considerations Section in RFCs",BCP 26,RFC 8126,DOI 10.17487/RFC8126,,<https://www.rfc-editor.org/info/rfc8126>.
[RFC8264]
Saint-Andre, P. andM. Blanchet,"PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols",RFC 8264,DOI 10.17487/RFC8264,,<https://www.rfc-editor.org/info/rfc8264>.
[RFC8707]
Campbell, B.,Bradley, J., andH. Tschofenig,"Resource Indicators for OAuth 2.0",RFC 8707,DOI 10.17487/RFC8707,,<https://www.rfc-editor.org/info/rfc8707>.
[RFC8792]
Watsen, K.,Auerswald, E.,Farrel, A., andQ. Wu,"Handling Long Lines in Content of Internet-Drafts and RFCs",RFC 8792,DOI 10.17487/RFC8792,,<https://www.rfc-editor.org/info/rfc8792>.
[RFC9396]
Lodderstedt, T.,Richer, J., andB. Campbell,"OAuth 2.0 Rich Authorization Requests",RFC 9396,DOI 10.17487/RFC9396,,<https://www.rfc-editor.org/info/rfc9396>.
[RFC9440]
Campbell, B. andM. Bishop,"Client-Cert HTTP Header Field",RFC 9440,DOI 10.17487/RFC9440,,<https://www.rfc-editor.org/info/rfc9440>.
[RFC9525]
Saint-Andre, P. andR. Salz,"Service Identity in TLS",RFC 9525,DOI 10.17487/RFC9525,,<https://www.rfc-editor.org/info/rfc9525>.
[SP80063C]
Grassi, P.,Richer, J.,Squire, S.,Fenton, J.,Nadeau, E.,Lefkovitz, N.,Danker, J.,Choong, Y.,Greene, K., andM. Theofanos,"Digital Identity Guidelines: Federation and Assertions",NIST SP 800-63C,DOI 10.6028/NIST.SP.800-63c,,<https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-63c.pdf>.
[Subj-ID-Formats]
IANA,"Subject Identifier Formats",<https://www.iana.org/assignments/secevent>.

Appendix A.Comparison with OAuth 2.0

GNAP's protocol design differs from OAuth 2.0's in several fundamental ways:

  1. Consent and authorization flexibility:

    OAuth 2.0 generally assumes the user has access to a web browser. The type of interaction available is fixed by the grant type, and the most common interactive grant types start in the browser. OAuth 2.0 assumes that the user using the client software is the same user that will interact with the AS to approve access.

    GNAP allows various patterns to manage authorizations and consents required to fulfill this requested delegation, including information sent by the client instance, information supplied by external parties, and information gathered through the interaction process. GNAP allows a client instance to list different ways that it can start and finish an interaction, and these can be mixed together as needed for different use cases. GNAP interactions can use a browser, but they don't have to. Methods can use inter-application messaging protocols, out-of-band data transfer, or anything else. GNAP allows extensions to define new ways to start and finish an interaction, as new methods and platforms are expected to become available over time. GNAP is designed to allow the end user and the RO to be two different people, but it still works in the optimized case of them being the same party.

  2. Intent registration and inline negotiation:

    OAuth 2.0 uses different "grant types" that start at different endpoints for different purposes. Many of these require discovery of several interrelated parameters.

    GNAP requests all start with the same type of request to the same endpoint at the AS. Next steps are negotiated between the client instance and AS based on software capabilities, policies surrounding requested access, and the overall context of the ongoing request. GNAP defines a continuation API that allows the client instance and AS to request and send additional information from each other over multiple steps. This continuation API uses the same access token protection that other GNAP-protected APIs use. GNAP allows discovery to optimize the requests, but it isn't required thanks to the negotiation capabilities.

    GNAP is able to handle the life cycle of an authorization request and therefore simplifies the mental model surrounding OAuth2. For instance, there's no need for refresh tokens when the API enables proper rotation of access tokens.

  3. Client instances:

    OAuth 2.0 requires all clients to be registered at the AS and to use a client_id known to the AS as part of the protocol. This client_id is generally assumed to be assigned by a trusted authority during a registration process, and OAuth places a lot of trust on the client_id as a result. Dynamic registration allows different classes of clients to get a client_id at runtime, even if they only ever use it for one request.

    GNAP allows the client instance to present an unknown key to the AS and use that key to protect the ongoing request. GNAP's client instance identifier mechanism allows for pre-registered clients and dynamically registered clients to exist as an optimized case without requiring the identifier as part of the protocol at all times.

  4. Expanded delegation:

    OAuth 2.0 defines the "scope" parameter for controlling access to APIs. This parameter has been coopted to mean a number of different things in different protocols, including flags for turning special behavior on and off and the return of data apart from the access token. The "resource" indicator (defined in[RFC8707]) and Rich Authorization Request (RAR) extensions (as defined in[RFC9396]) expand on the "scope" concept in similar but different ways.

    GNAP defines a rich structure for requesting access (analogous to RAR), with string references as an optimization (analogous to scopes). GNAP defines methods for requesting directly returned user information, separate from API access. This information includes identifiers for the current user and structured assertions. GNAP makes no assumptions or demands on the format or contents of the access token, but the RS extension allows a negotiation of token formats between the AS and RS.

  5. Cryptography-based security:

    OAuth 2.0 uses shared bearer secrets, including the client_secret and access token, and advanced authentication and sender constraints have been built on after the fact in inconsistent ways.

    In GNAP, all communication between the client instance and AS is bound to a key held by the client instance. GNAP uses the same cryptographic mechanisms for both authenticating the client (to the AS) and binding the access token (to the RS and the AS). GNAP allows extensions to define new cryptographic protection mechanisms, as new methods are expected to become available over time. GNAP does not have the notion of "public clients" because key information can always be sent and used dynamically.

  6. Privacy and usable security:

    OAuth 2.0's deployment model assumes a strong binding between the AS and the RS.

    GNAP is designed to be interoperable with decentralized identity standards and to provide a human-centric authorization layer. In addition to this specification, GNAP supports various patterns of communication between RSs and ASes through extensions. GNAP tries to limit the odds of a consolidation to just a handful of popular AS services.

Appendix B.Example Protocol Flows

The protocol defined in this specification provides a number offeatures that can be combined to solve many different kinds ofauthentication scenarios. This section seeks to show examples of how theprotocol could be applied for different situations.

Some longer fields, particularly cryptographic information, have beentruncated for display purposes in these examples.

B.1.Redirect-Based User Interaction

In this scenario, the user is the RO and has access to a webbrowser, and the client instance can take front-channel callbacks on the samedevice as the user. This combination is analogous to the OAuth 2.0Authorization Code grant type.

The client instance initiates the request to the AS. Here, the client instanceidentifies itself using its public key.

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            {                "actions": [                    "read",                    "write",                    "dolphin"                ],                "locations": [                    "https://server.example.net/",                    "https://resource.local/other"                ],                "datatypes": [                    "metadata",                    "images"                ]            }        ],    },    "client": {      "key": {        "proof": "httpsig",        "jwk": {            "kty": "RSA",            "e": "AQAB",            "kid": "xyz-1",            "alg": "RS256",            "n": "kOB5rR4Jv0GMeLaY6_It_r3ORwdf8ci_JtffXyaSx8..."        }      }    },    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.example.net/return/123455",            "nonce": "LKLTI25DK82FX4T4QFZC"        }    }}

The AS processes the request and determines that the RO needs tointeract. The AS returns the following response that gives the client instance theinformation it needs to connect. The AS has also indicated to theclient instance that it can use the given instance identifier to identify itself infuture requests (Section 2.3.1).

HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "interact": {      "redirect":        "https://server.example.com/interact/4CF492MLVMSW9MKM",      "finish": "MBDOFXG4Y5CVJCX821LH"    }    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue"    },    "instance_id": "7C7C4AZ9KHRS6X63AJAO"}

The client instance saves the response and redirects the user to theinteraction start mode's "redirect" URI by sending the following HTTP message to the user'sbrowser.

HTTP 303 FoundLocation: https://server.example.com/interact/4CF492MLVMSW9MKM

The user's browser fetches the AS's interaction URI. The user logsin, is identified as the RO for the resource being requested, andapproves the request. Since the AS has a callback parameter that was sent in the initial request's interaction finish method, the ASgenerates the interaction reference, calculates the hash, andredirects the user back to the client instance with these additional valuesadded as query parameters.

NOTE: '\' line wrapping per RFC 8792HTTP 302 FoundLocation: https://client.example.net/return/123455\  ?hash=x-gguKWTj8rQf7d7i3w3UhzvuJ5bpOlKyAlVpLxBffY\  &interact_ref=4IFWWIKYBC2PQ6U56NL1

The client instance receives this request from the user's browser. Theclient instance ensures that this is the same user that was sent out byvalidating session information and retrieves the stored pendingrequest. The client instance uses the values in this to validate the hashparameter. The client instance then calls the continuation URI using the associated continuation access token and presents theinteraction reference in the request content. The client instance signsthe request as above.

POST /continue HTTP/1.1Host: server.example.comContent-Type: application/jsonAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "interact_ref": "4IFWWIKYBC2PQ6U56NL1"}

The AS retrieves the pending request by looking up the pending grant request associated with the presented continuation access token. Seeing that the grant is approved, the AS issuesan access token and returns this to the client instance.

NOTE: '\' line wrapping per RFC 8792HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": "https://server.example.com/token/PRY5NM33O\            M4TB8N6BW7OZB8CDFONP219RP1L",        "access": [{            "actions": [                "read",                "write",                "dolphin"            ],            "locations": [                "https://server.example.net/",                "https://resource.local/other"            ],            "datatypes": [                "metadata",                "images"            ]        }]    },    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue"    }}

B.2.Secondary Device Interaction

In this scenario, the user does not have access to a web browser onthe device and must use a secondary device to interact with the AS.The client instance can display a user code or a printable QR code.The client instance is not able to accept callbacks from the AS and needs to pollfor updates while waiting for the user to authorize the request.

The client instance initiates the request to the AS.

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "dolphin-metadata", "some other thing"        ],    },    "client": "7C7C4AZ9KHRS6X63AJAO",    "interact": {        "start": ["redirect", "user_code"]    }}

The AS processes this and determines that the RO needs to interact.The AS supports both redirect URIs and user codes for interaction, soit includes both. Since there is no interaction finish mode, the AS does not includea nonce but does include a "wait" parameter on the continuationsection because it expects the client instance to poll for results.

HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "interact": {        "redirect": "https://srv.ex/MXKHQ",        "user_code": {            "code": "A1BC3DFF"        }    },    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue/VGJKPTKC50",        "wait": 60    }}

The client instance saves the response and displays the user code visuallyon its screen along with the static device URI. The client instance alsodisplays the short interaction URI as a QR code to be scanned.

If the user scans the code, they are taken to the interactionendpoint, and the AS looks up the current pending request based on theincoming URI. If the user instead goes to the static page and entersthe code manually, the AS looks up the current pending request basedon the value of the user code. In both cases, the user logs in, isidentified as the RO for the resource being requested, and approvesthe request. Once the request has been approved, the AS displays tothe user a message to return to their device.

Meanwhile, the client instance polls the AS every 60 seconds atthe continuation URI. The client instance signs the request using thesame key and method that it did in the first request.

POST /continue/VGJKPTKC50 HTTP/1.1Host: server.example.comAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...

The AS retrieves the pending request based on the pending grant request associated with the continuation access token anddetermines that it has not yet been authorized. The AS indicates tothe client instance that no access token has yet been issued but it cancontinue to call after another 60-second timeout.

HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "continue": {        "access_token": {            "value": "G7YQT4KQQ5TZY9SLSS5E"        },        "uri": "https://server.example.com/continue/ATWHO4Q1WV",        "wait": 60    }}

Note that the continuation URI and access token have been rotated since they wereused by the client instance to make this call. The client instance polls thecontinuation URI after a 60-second timeout using this new information.

POST /continue/ATWHO4Q1WV HTTP/1.1Host: server.example.comAuthorization: GNAP G7YQT4KQQ5TZY9SLSS5ESignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...

The AS retrieves the pending request based on the URI and access token,determines that it has been approved, and issues an accesstoken for the client to use at the RS.

NOTE: '\' line wrapping per RFC 8792HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": "https://server.example.com/token/PRY5NM33O\            M4TB8N6BW7OZB8CDFONP219RP1L",        "access": [            "dolphin-metadata", "some other thing"        ]    }}

B.3.No User Involvement

In this scenario, the client instance is requesting access on its ownbehalf, with no user to interact with.

The client instance creates a request to the AS, identifying itself with itspublic key and using MTLS to make the request.

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/json{    "access_token": {        "access": [            "backend service", "nightly-routine-3"        ],    },    "client": {      "key": {        "proof": "mtls",        "cert#S256": "bwcK0esc3ACC3DB2Y5_lESsXE8o9ltc05O89jdN-dg2"      }    }}

The AS processes this, determines that the client instance can ask forthe requested resources, and issues an access token.

HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": "https://server.example.com/token",        "access": [            "backend service", "nightly-routine-3"        ]    }}

B.4.Asynchronous Authorization

In this scenario, the client instance is requesting on behalf of a specificRO but has no way to interact with the user. The AS canasynchronously reach out to the RO for approval in this scenario.

The client instance starts the request at the AS by requesting a set ofresources. The client instance also identifies a particular user.

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            {                "type": "photo-api",                "actions": [                    "read",                    "write",                    "dolphin"                ],                "locations": [                    "https://server.example.net/",                    "https://resource.local/other"                ],                "datatypes": [                    "metadata",                    "images"                ]            },            "read", "dolphin-metadata",            {                "type": "financial-transaction",                "actions": [                    "withdraw"                ],                "identifier": "account-14-32-32-3",                "currency": "USD"            },            "some other thing"        ],    },    "client": "7C7C4AZ9KHRS6X63AJAO",    "user": {        "sub_ids": [ {            "format": "opaque",            "id": "J2G8G8O4AZ"        } ]  }}

The AS processes this and determines that the RO needs to interact.The AS determines that it can reach the identified user asynchronouslyand that the identified user does have the ability to approve thisrequest. The AS indicates to the client instance that it can poll forcontinuation.

HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "continue": {        "access_token": {            "value": "80UPRY5NM33OMUKMKSKU"        },        "uri": "https://server.example.com/continue",        "wait": 60    }}

The AS reaches out to the RO and prompts them for consent. In thisexample scenario, the AS has an application that it can push notifications to for the specified account.

Meanwhile, the client instance periodically polls the AS every 60 seconds atthe continuation URI.

POST /continue HTTP/1.1Host: server.example.comAuthorization: GNAP 80UPRY5NM33OMUKMKSKUSignature-Input: sig1=...Signature: sig1=...

The AS retrieves the pending request based on the continuation access token anddetermines that it has not yet been authorized. The AS indicates tothe client instance that no access token has yet been issued but it cancontinue to call after another 60-second timeout.

HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "continue": {        "access_token": {            "value": "BI9QNW6V9W3XFJK4R02D"        },        "uri": "https://server.example.com/continue",        "wait": 60    }}

Note that the continuation access token value has been rotated since it wasused by the client instance to make this call. The client instance polls thecontinuation URI after a 60-second timeout using the new token.

POST /continue HTTP/1.1Host: server.example.comAuthorization: GNAP BI9QNW6V9W3XFJK4R02DSignature-Input: sig1=...Signature: sig1=...

The AS retrieves the pending request based on the handle,determines that it has been approved, and issues an accesstoken.

NOTE: '\' line wrapping per RFC 8792HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: no-store{    "access_token": {        "value": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",        "manage": "https://server.example.com/token/PRY5NM33O\            M4TB8N6BW7OZB8CDFONP219RP1L",        "access": [            "dolphin-metadata", "some other thing"        ]    }}

B.5.Applying OAuth 2.0 Scopes and Client IDs

While GNAP is not designed to be directly compatible withOAuth 2.0[RFC6749], considerations have been made to enable the use ofOAuth 2.0 concepts and constructs more smoothly within GNAP.

In this scenario, the client developer has aclient_id and set ofscope values from their OAuth 2.0 system and wants to apply them to thenew protocol. In OAuth 2.0, the client developer would puttheirclient_id andscope values as parameters into a redirect requestto the authorization endpoint.

NOTE: '\' line wrapping per RFC 8792HTTP 302 FoundLocation: https://server.example.com/authorize\  ?client_id=7C7C4AZ9KHRS6X63AJAO\  &scope=read%20write%20dolphin\  &redirect_uri=https://client.example.net/return\  &response_type=code\  &state=123455

Now the developer wants to make an analogous request to the ASusing GNAP. To do so, the client instance makes an HTTP POST andplaces the OAuth 2.0 values in the appropriate places.

POST /tx HTTP/1.1Host: server.example.comContent-Type: application/jsonSignature-Input: sig1=...Signature: sig1=...Content-Digest: sha-256=...{    "access_token": {        "access": [            "read", "write", "dolphin"        ],        "flags": [ "bearer" ]    },    "client": "7C7C4AZ9KHRS6X63AJAO",    "interact": {        "start": ["redirect"],        "finish": {            "method": "redirect",            "uri": "https://client.example.net/return?state=123455",            "nonce": "LKLTI25DK82FX4T4QFZC"        }    }}

Theclient_id can be used to identify the client instance's keys that ituses for authentication, the scopes represent resources that theclient instance is requesting, and theredirect_uri andstate value arepre-combined into afinish URI that can be unique per request. Theclient instance additionally creates a nonce to protect the callback, separatefrom the state parameter that it has added to its return URI.

From here, the protocol continues as above.

Appendix C.Interoperability Profiles

The GNAP specification has many different modes, options, and mechanisms, allowing itto solve a wide variety of problems in a wide variety of deployments. The wide applicabilityof GNAP makes it difficult, if not impossible, to define a set of mandatory-to-implementfeatures, since one environment's required feature would be impossible to do in another environment.While this is a large problem in many systems, GNAP's back-and-forth negotiation processallows parties to declare at runtime everything that they support and then have the other partyselect from that the subset of items that they also support, leading to functional compatibilityin many parts of the protocol even in an open world scenario.

In addition, GNAP defines a set of interoperability profiles that gather together core requirementsto fix options into common configurations that are likely to be useful to large populations ofsimilar applications.

Conformant AS implementations of these profilesMUST implement at least the features as specifiedin the profile andMAY implement additional features or profiles. Conformant client implementationsof these profilesMUST implement at least the features as specified, except where a subset of thefeatures allows the protocol to function (such as using polling instead of a push finish method forthe Secondary Device profile).

C.1.Web-Based Redirection

Implementations conformant to the web-based redirection profile of GNAPMUST implement all of the following features:

  • Interaction Start Methods:redirect
  • Interaction Finish Methods:redirect
  • Interaction Hash Algorithms:sha-256
  • Key Proofing Methods:httpsig with no additional parameters
  • Key Formats:jwks with signature algorithm included in the key'salg parameter
  • JOSE Signature Algorithm: PS256
  • Subject Identifier Formats:opaque
  • Assertion Formats:id_token

C.2.Secondary Device

Implementations conformant to the Secondary Device profile of GNAPMUST implement all of the following features:

  • Interaction Start Methods:user_code anduser_code_uri
  • Interaction Finish Methods:push
  • Interaction Hash Algorithms:sha-256
  • Key Proofing Methods:httpsig with no additional parameters
  • Key Formats:jwks with signature algorithm included in the key'salg parameter
  • JOSE Signature Algorithm: PS256
  • Subject Identifier Formats:opaque
  • Assertion Formats:id_token

Appendix D.Guidance for Extensions

Extensions to this specification have a variety of places to alter the protocol, including manyfields and objects that can have additional values in a registry (Section 10) established by thisspecification. For interoperability and to preserve the security of the protocol, extensions shouldregister new values with IANA by following the specified mechanism. While it may technically bepossible to extend the protocol by adding elements to JSON objects that are not governed by anIANA registry, a recipient may ignore such values but is also allowed to reject them.

Most object fields in GNAP are specified with types, and those types can allow different butrelated behavior. For example, theaccess array can include either strings or objects, asdiscussed inSection 8. The use of JSON polymorphism (Appendix E)within GNAP allows extensions to define new fields by not only choosing a new name but also byusing an existing name with a new type. However, the extension's definitionof a new type for a field needs to fit the same kind of item being extended. For example, ahypothetical extension could define a string value for theaccess_token request field,with a URL to download a hosted access token request. Such an extension would be appropriate astheaccess_token field still defines the access tokens being requested. However, if an extensionwere to define a string value for theaccess_token request field, with the value insteadbeing something unrelated to the access token request such as a value or key format, this wouldnot be an appropriate means of extension. (Note that this specific extension example would createanother form of SSRF attack surface as discussed inSection 11.34.)

As another example, both interaction start modes (Section 2.5.1) andkey proofing methods (Section 7.3) can be defined as either strings or objects. An extensioncould take a method defined as a string, such asapp, and define an object-based version withadditional parameters. This extension should still define a method to launch an application on theend user's device, just likeapp does when specified as a string.

Additionally, the ability to deal with different types for a field is not expected to be equalbetween an AS and client software, with the client software being assumed to be both more variedand more simplified than the AS. Furthermore, the nature of the negotiation process in GNAP allowsthe AS more chance of recovery from unknown situations and parameters. As such, any extensions thatchange the type of any field returned to a client instance should only do so when the clientinstance has indicated specific support for that extension through some kind of request parameter.

Appendix E.JSON Structures and Polymorphism

GNAP makes use of polymorphism within theJSON [RFC8259] structures used forthe protocol. Each portion of this protocol is defined in terms of the JSON data typethat its values can take, whether it's a string, object, array, boolean, or number. For somefields, different data types offer different descriptive capabilities and are used in differentsituations for the same field. Each data type provides a different syntax to expressthe same underlying semantic protocol element, which allows for optimization andsimplification in many common cases.

Even though JSON is often used to describe strongly typed structures, JSON on its own is naturally polymorphic.In JSON, the named members of an object have no type associated with them, and anydata type can be used as the value for any member. In practice, each memberhas a semantic type that needs to make sense to the parties creating andconsuming the object. Within this protocol, each object member is defined in termsof its semantic content, and this semantic content might have expressions indifferent concrete data types for different specific purposes. Since each objectmember has exactly one value in JSON, each data type for an object member fieldis naturally mutually exclusive with other data types within a single JSON object.

For example, a resource request for a single access token is composed of an objectof resource request descriptions, while a request for multiple access tokens iscomposed of an array whose member values are all objects. Both of these represent requestsfor access, but the difference in syntax allows the client instance and AS to differentiatebetween the two request types in the same request.

Another form of polymorphism in JSON comes from the fact that the values within JSONarrays need not all be of the same JSON data type. However, within this protocol,each element within the array needs to be of the same kind of semantic element forthe collection to make sense, even when the data types are different from each other.

For example, each aspect of a resource request can be described using an object with multipledimensional components, or the aspect can be requested using a string. In both cases, the resourcerequest is being described in a way that the AS needs to interpret, but with differentlevels of specificity and complexity for the client instance to deal with. An API designercan provide a set of common access scopes as simple strings but still allowclient software developers to specify custom access when needed for more complex APIs.

Extensions to this specification can use different data types for defined fields, buteach extension needs to not only declare what the data type means but also providejustification for the data type representing the same basic kind of thing it extends.For example, an extension declaring an "array" representation for a field would needto explain how the array represents something akin to the non-array element that itis replacing. See additional discussion inAppendix D.

Acknowledgements

The authors would like to thank the following individuals for their reviews, implementations, and contributions:Åke Axeland,Aaron Parecki,Adam Omar Oueidat,Andrii Deinega,Annabelle Backman,Dick Hardt,Dmitri Zagidulin,Dmitry Barinov,Florian Helmschmidt,Francis Pouatcha,George Fletcher,Haardik Haardik,Hamid Massaoud,Jacky Yuan,Joseph Heenan,Kathleen Moriarty,Leif Johansson,Mike Jones,Mike Varley,Nat Sakimura,Takahiko Kawasaki,Takahiro Tsuchiya, andYaron Sheffer.

The authors would also like to thank the GNAP Working Group design team (Kathleen Moriarty,Dick Hardt,Mike Jones, and the authors), who incorporated elements from the XAuth and XYZ proposals to create the first draft version of this document.

In addition, the authors would like to thankAaron Parecki andMike Jones for insights into how to integrate identity and authentication systems into the core protocol. BothJustin Richer andDick Hardt developed the use cases, diagrams, and insights provided in the XYZ and XAuth proposals that have been incorporated here. The authors would like to especially thankMike Varley and the team at SecureKey for feedback and development of early versions of the XYZ protocol that fed into this standards work.

Finally, the authors want to acknowledge the immense contributions ofAaron Parecki to the content of this document. We thank him for his insight, input, and hard work, without which GNAP would not have grown to what it is.

Authors' Addresses

Justin Richer (editor)
Bespoke Engineering
Email:ietf@justin.richer.org
URI:https://bspk.io/
Fabien Imbault
acert.io
Email:fabien.imbault@acert.io
URI:https://acert.io/

[8]ページ先頭

©2009-2025 Movatter.jp