InternetDataInternetData

Discovery

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

RFC 8414 authorization server metadata: the endpoints, the grant types and the scopes this server supports.

Read this rather than hardcoding endpoints. It is also served at /.well-known/openid-configuration, identically, because several clients probe that path first.

Response Body

application/json

curl -X GET "https://internetdata.io/.well-known/oauth-authorization-server"
{
  "issuer": "string",
  "authorization_endpoint": "string",
  "token_endpoint": "string",
  "device_authorization_endpoint": "string",
  "revocation_endpoint": "string",
  "scopes_supported": [
    "string"
  ],
  "response_types_supported": [
    "string"
  ],
  "grant_types_supported": [
    "string"
  ],
  "code_challenge_methods_supported": [
    "string"
  ],
  "token_endpoint_auth_methods_supported": [
    "string"
  ],
  "authorization_response_iss_parameter_supported": true,
  "service_documentation": "string"
}