Skip to content

Commit

Permalink
fixup! ✨(keycloak) add ralph client for generating access tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
wilbrdt committed Oct 19, 2023
1 parent 5a73092 commit f2ad1b9
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions data/keycloak/clients/ralph.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"clientId": "ralph",
"name": "Ralph",
"description": "The ultimate toolbox for your learning analytics",
"enabled": true,
"rootUrl": "http://localhost:8100",
"adminUrl": "http://localhost:8100",
"baseUrl": "/",
"clientAuthenticatorType": "client-secret",
"secret": "bcef3562-730d-4575-9e39-63e185f99bca",
"redirectUris": ["http://localhost:8100/whoami"],
"webOrigins": ["http://localhost:8100"],
"standardFlowEnabled": true,
"directAccessGrantsEnabled": true,
"fullScopeAllowed": false,
"protocol": "openid-connect",
"publicClient": false,
"protocolMappers": [
{
"name": "Roles",
"protocol": "openid-connect",
"protocolMapper": "oidc-usermodel-client-role-mapper",
"config": {
"claim.name": "roles",
"jsonType.label": "String",
"usermodel.clientRoleMapping.clientId": "ralph",
"userinfo.token.claim": "true",
"id.token.claim": "true",
"access.token.claim": "true",
"multivalued": "true"
}
}
]
}

0 comments on commit f2ad1b9

Please sign in to comment.