Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nonce endpoint issuer metadata #27

Merged
merged 4 commits into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions draft-demarco-oauth-nonce-endpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,25 @@ Below is an example of how an OAuth 2.0 Authorization Server Metadata might incl
}
~~~~

## Nonce Issuer Metadata

The Nonce Issuers that uses the Nonce endpoint MUST include in their entity metadata the following parameter:

- **nonce_endpoint**: REQUIRED. This MUST be an HTTPS URL specifying the endpoint where clients can request a Nonce.

Below a non-normative example of Nonce Issuer Metadata :
cmarco0 marked this conversation as resolved.
Show resolved Hide resolved

~~~~
{
"issuer": "https://walletprovider.example.com",
"authorization_endpoint": "https://walletprovider.example.com/authorize",
"response_types_supported": ["code", "token"]
"token_endpoint": "https://walletprovider.example.com/token",
"nonce_endpoint": "https://walletprovider.example.com/nonce",
...
}
~~~~

# Nonce Request

When a Client needs a Nonce, it sends an HTTP GET request to the Nonce Endpoint.
Expand Down
Loading