Skip to content
TasksMate Developers

0.x — pre-release, no compatibility promise yet.What this means

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

Authorization server metadata (RFC 8414): the endpoints, scopes, grant types and PKCE method.

Successful Response

Media typeapplication/json
AuthorizationServerMetadata

Returned by oauth.server_metadata.

object
issuer
required
Issuer
string
authorization_endpoint
required
Authorization Endpoint
string
token_endpoint
required
Token Endpoint
string
revocation_endpoint
required
Revocation Endpoint
string
scopes_supported
required
Scopes Supported
Array<string>
response_types_supported
required
Response Types Supported
Array<string>
response_modes_supported
required
Response Modes Supported
Array<string>
grant_types_supported
required
Grant Types Supported
Array<string>
code_challenge_methods_supported
required
Code Challenge Methods Supported
Array<string>
token_endpoint_auth_methods_supported
required
Token Endpoint Auth Methods Supported
Array<string>
revocation_endpoint_auth_methods_supported
required
Revocation Endpoint Auth Methods Supported
Array<string>
service_documentation
Any of:
string

Example

{
"issuer": "string",
"authorization_endpoint": "string",
"token_endpoint": "string",
"revocation_endpoint": "string",
"scopes_supported": [
"string"
],
"response_types_supported": [
"string"
],
"response_modes_supported": [
"string"
],
"grant_types_supported": [
"string"
],
"code_challenge_methods_supported": [
"string"
],
"token_endpoint_auth_methods_supported": [
"string"
],
"revocation_endpoint_auth_methods_supported": [
"string"
],
"service_documentation": "string"
}