Merge pull request #1802 from equinux/pr/fix-js-parameter-encoding

Fix parameter encoding in JS adapter
This commit is contained in:
Stian Thorgersen 2015-11-12 09:19:21 +01:00
commit 1891019067

View file

@ -153,23 +153,23 @@
+ '&response_type=code';
if (options && options.prompt) {
url += '&prompt=' + options.prompt;
url += '&prompt=' + encodeURIComponent(options.prompt);
}
if (options && options.loginHint) {
url += '&login_hint=' + options.loginHint;
url += '&login_hint=' + encodeURIComponent(options.loginHint);
}
if (options && options.idpHint) {
url += '&kc_idp_hint=' + options.idpHint;
url += '&kc_idp_hint=' + encodeURIComponent(options.idpHint);
}
if (options && options.scope) {
url += '&scope=' + options.scope;
url += '&scope=' + encodeURIComponent(options.scope);
}
if (options && options.locale) {
url += '&ui_locales=' + options.locale;
url += '&ui_locales=' + encodeURIComponent(options.locale);
}
return url;