File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
docker/keycloak/extensions-26/services/src/main/java/com/github/bcgov/keycloak/common Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ private static void fetchNewToken() {
49
49
formparams .add (new BasicNameValuePair ("grant_type" , "client_credentials" ));
50
50
formparams .add (new BasicNameValuePair ("client_id" , applicationProperties .getPPIDClientID ()));
51
51
formparams .add (new BasicNameValuePair ("client_secret" , applicationProperties .getPPIDClientSecret ()));
52
+ formparams .add (new BasicNameValuePair ("scope" , "ppids-api" ));
52
53
53
54
try {
54
55
UrlEncodedFormEntity form = new UrlEncodedFormEntity (formparams , StandardCharsets .UTF_8 );
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: '3.8'
3
3
services :
4
4
keycloak :
5
5
container_name : keycloak
6
- image : sso-keycloak:26.0
6
+ image : sso-keycloak:26.2-4
7
7
command : start-dev
8
8
depends_on :
9
9
- postgres
@@ -27,7 +27,7 @@ services:
27
27
PPID_CLIENT_SECRET :
28
28
PPID_API_URL : https://idsit.gov.bc.ca/iis-apis/v1/ppids
29
29
volumes :
30
- - ../../docker/keycloak/extensions-24 /themes/src/main/resources/theme:/opt/keycloak/themes/
30
+ - ../../docker/keycloak/extensions-26 /themes/src/main/resources/theme:/opt/keycloak/themes/
31
31
32
32
postgres :
33
33
image : postgres:15
You can’t perform that action at this time.
0 commit comments