Our keycloak returns an auth-token via the "id_token" parameter after login, but src/JSO.js:278 parses only the "access_token" parameter in the url.
|
if (response.hasOwnProperty("access_token")) { |
Is there some advice how to make parsing an id_token possible with JSO (response_type=id_token)?
Thanks!
Our keycloak returns an auth-token via the "id_token" parameter after login, but src/JSO.js:278 parses only the "access_token" parameter in the url.
jso/src/JSO.js
Line 278 in b1be102
Is there some advice how to make parsing an id_token possible with JSO (response_type=id_token)?
Thanks!