コンテンツにスキップ

Introspect an OAuth token.

POST
/introspect
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/introspect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data token=example \
--data token_type_hint=example
Media type application/x-www-form-urlencoded
object
token
string
token_type_hint
string
key
additional properties
Example generated
token=example&token_type_hint=example

Successful JSON response.

Media type application/json
object
key
additional properties
Example generated
{
"additionalProperty": "example"
}

OAuth error response.

Media type application/json
object
error
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"error_description": "example"
}