Skip to content

Commit

Permalink
Merge pull request #25760 from sberyozkin/keycloak_devservices_id_tok…
Browse files Browse the repository at this point in the history
…en_hint

Fix DevService for Keycloak logout with Keycloak 18
  • Loading branch information
sberyozkin authored May 24, 2022
2 parents e9b3c80 + e76f9c5 commit 995369c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@
localStorage.removeItem('authorized');

window.location.assign('{info:logoutUrl??}'
+ "?" + '{info:postLogoutUriParam??}' + "=" + "http%3A%2F%2Flocalhost%3A" + port + encodedDevRoot + "%2Fio.quarkus.quarkus-oidc%2Fprovider");
+ "?" + '{info:postLogoutUriParam??}' + "=" + "http%3A%2F%2Flocalhost%3A" + port + encodedDevRoot + "%2Fio.quarkus.quarkus-oidc%2Fprovider"
+ "&" + "id_token_hint" + "=" + idToken);
}

function exchangeCodeForTokens(code){
Expand Down

0 comments on commit 995369c

Please sign in to comment.