in lib/token.js [45:56]
getRedirectParams() {
const nonce = getNonce(this.url);
const home = encodeURIComponent(prefixUrl(this.url));
return {
redirect_uri: home + this.redirectPath,
client_id: home,
nonce,
scope: 'openid',
response_type: 'id_token',
response_mode: 'query'
}
}