Token introspection
When an application receives an HTI launch, it will contain a JWT token. To ensure that not every application has to build in all the security logic to verify this token, Koppeltaal offers Token Introspection on the authentication server. This eliminates the need for the application to verify the JWT itself.
When Token Introspection approves a token, the extracted body of the JWT token will be returned. If a 200
response code is returned, the application must ALWAYS verify that the active
attribute in the response is true
.
POST
{AUTH_SERVER_URL}/oauth2/introspect
Headers
Name | Type | Description |
---|---|---|
Content-Type* | String |
|
Accept* | String |
|
Request Body
Name | Type | Description |
---|---|---|
client_assertion* | String | JWT as composed for the |
client_assertion_type* | String | Always:
|
token* | String | The JWT to be validated |
Topics
Last updated