Client - add PKCE support when authorizing an app

This commit is contained in:
Sam
2022-08-03 16:34:36 +02:00
parent 922ff63d99
commit b96a682eb8
3 changed files with 18 additions and 2 deletions

View File

@ -73,7 +73,15 @@
redirect_uri: `${route.query.redirect_uri}`,
response_type: `${route.query.response_type}`,
scope: `${route.query.scope}`,
state: `${route.query.state}`,
state: `${route.query.state ? route.query.state : ''}`,
code_challenge: `${
route.query.code_challenge ? route.query.code_challenge : ''
}`,
code_challenge_method: `${
route.query.code_challenge_method
? route.query.code_challenge_method
: ''
}`,
})
}
</script>