From d6b32f0fdf331cb20f2110f5cce1a726b1588ec3 Mon Sep 17 00:00:00 2001 From: Alex Luker Date: Wed, 23 Oct 2024 10:34:30 +0100 Subject: [PATCH] Add openid scope to auth request to keycloak --- web/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.js b/web/app.js index 9983b1c..770c40d 100644 --- a/web/app.js +++ b/web/app.js @@ -128,7 +128,7 @@ async function createApp() { client: client, usePKCE: true, params: { - scope: "offline_access", + scope: "openid offline_access", }, }, function authCallback(tokenset, userinfo, done) {