...
The token parameter used here can be an access token or refresh token. The token_type_hint
parameter is optional. This parameter can take values of either access_token
or refresh_token
. The Identity Server uses this parameter to speed up the process of looking up the token by searching first in the set of tokens the client specifies (access_token
or refresh_token
). If the token is not to be found in the set the client claims it to be in, then the server looks for the token in the other set (refresh_token
or access_token
).
The SOAP endpoint, on the other hand, is for the resource owners to directly interact with the Authorization server and revoke authorization grants for applications they previously granted access to, without the OAuth 2.0 application/client being an intermediary in the process. The use of this SOAP endpoint is demonstrated by the WSO2 Identity Server’s management console at ‘Configure’ > ‘My Authorized Apps‘ for resource owners to login and revoke application authorization.
The following is a depiction of the ‘My Authorized Apps’ page at an instance when the user ‘ResourceOwner
’ has granted authorization to the application ‘Playground2.0
′ created by user ‘AppDev
’.
The token revocation end-point also supports CORS (Cross-Origin Resource Sharing) specification and also JSONP (Remote JSON – JSONP).
CORS is supported through CORS-Filter which can be found here. The CORS Filter is designed to be plugged to a webapp using its deployment descriptor (web.xml
). Since the OAuth 2.0 endpoints in WSO2 Identity Server have been written as JAX-RS endpoints, you can add the required CORS configurations to its deployment descriptor.
You can find this webapp at <WSO2_IS_HOME>/repository/deployment/server/webapps/oauth2endpoints.war
. Rather than editing the web.xml
directly in the deployed directory, its easier to copy the oauth2endpoints.war
file into another location, edit the web.xml
and copy it back into the webapps
folder and it gets hot deployed.
Example of a JSONP revocation request:
Code Block |
---|
curl -X POST --basic -u "4xTplVAiQEwrBF6wYSW3cpyqYDoa:GREoG5f80kmg7uHNed2YwfJSxlQa" -H "Content-Type: application/x-www-form-urlencoded;charset=UTF-8" -k -d "token=d23e96c9bf2818fe5b4db0f8dbe829bb&token_type_hint=access_token&callback=package. |
...
myCallback" https://localhost:9443/oauth2endpoints/revoke |
The callback
parameter is optional.