From 3e3f6a385f1db8bee45fc5f27b59ad8a370337f3 Mon Sep 17 00:00:00 2001 From: GMourougayane <97706573+GMourougayane@users.noreply.github.com> Date: Mon, 3 Jun 2024 00:32:15 +0530 Subject: [PATCH] Update keycloak-client.js --- keycloak-oauth/keycloak-client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keycloak-oauth/keycloak-client.js b/keycloak-oauth/keycloak-client.js index c6af466..6895eee 100755 --- a/keycloak-oauth/keycloak-client.js +++ b/keycloak-oauth/keycloak-client.js @@ -47,7 +47,7 @@ MeteorKeycloak.requestCredential = function(options, credentialRequestCompleteCa '&nonce=' + encodeURIComponent(Random.secret()) + '&response_mode=' + encodeURIComponent('query') + '&response_type=' + encodeURIComponent('code') + - '&scope=' + encodeURIComponent("oidc"); + '&scope=' + encodeURIComponent("openid"); @@ -63,4 +63,4 @@ MeteorKeycloak.requestCredential = function(options, credentialRequestCompleteCa credentialRequestCompleteCallback: credentialRequestCompleteCallback, credentialToken: credentialToken }); -}; \ No newline at end of file +};