Skip to content
Snippets Groups Projects
Commit 468fc815 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Enable PKCE

See https://tools.ietf.org/html/rfc7636
Supported in Keycloak since 7.0
parent 8df24501
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,11 @@ export class KeycloakWrapper extends EventTarget {
return;
this._initDone = true;
const options = {promiseType: 'native'};
const options = {
promiseType: 'native',
pkceMethod: 'S256'
};
if (this._silentCheckSsoUri) {
options['onLoad'] = 'check-sso';
options['silentCheckSsoRedirectUri'] = this._silentCheckSsoUri;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment