light-mode-image
Learn
API ReferenceIssuer metadata

Retrieve authorization server metadata

Returns the OAuth 2.0 Authorization Server Metadata for your tenant.

This is the standard OAuth 2.0 Well-Known endpoint, providing public metadata that describes the tenant’s OAuth 2.0 configuration and capabilities. https://www.rfc-editor.org/rfc/rfc8414.html

GET/.well-known/oauth-authorization-server

Response Body

application/json

curl -X GET "https://example.vii.au01.mattr.global/.well-known/oauth-authorization-server"
{
  "issuer": "http://example.com",
  "authorization_endpoint": "http://example.com",
  "token_endpoint": "http://example.com",
  "jwks_uri": "http://example.com",
  "scopes_supported": [
    "ldp_vc:ExampleCredential",
    "ldp_vc:CourseCredential",
    "cwt:CourseCredential",
    "cwt_vc:CourseCredential",
    "mso_mdoc:org.iso.18013.5.1.mDL"
  ],
  "response_types_supported": [
    "code"
  ],
  "response_modes_supported": [
    "query",
    "fragment"
  ],
  "grant_types_supported": [
    "authorization_code"
  ],
  "token_endpoint_auth_methods_supported": [
    "client_secret_basic",
    "none"
  ],
  "code_challenge_methods_supported": [
    "S256"
  ],
  "dpop_signing_alg_values_supported": [
    "ES256"
  ],
  "pre-authorized_grant_anonymous_access_supported": true
}

How would you rate this page?