-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
request and revoke Keycloak APIKey #182
Comments
Keycloak API endpoints:
|
Auhtorization Changes:
Check API Response: {
"isValid": false,
"message": "API Key was revoked",
"exp": 1234556,
"isRevoked": true,
"userId": "asdf-1234-asdf"
} Valid Response: {
"isValid": true,
"exp": 1234556,
"isRevoked": false,
"scopes": [
"asdf.READ",
"qwerty.WRITE"
],
"userId": "asdf-1234-asdf"
} |
keycloak-apikeys is a Java project created to extend Keycloak to add a customized solution to implement apiKeys. |
No description provided.
The text was updated successfully, but these errors were encountered: