OIDC_client
Home
Privacy
Tokens
Get Time
Url Tool
Register
Login
Login using authorization code flow + PKCE
This page allows you to construct a login link using the authorization code flow and PKCE.
Create the login link
response_type
What do I want to get back?
code
means authorization code
client_id
The client identifier
scope
What do I want to have access to? Can be any of
openid email profile phone employee_info api
. The
openid
is a required scope.
prompt
value that specifies whether the Authorization Server prompts the End-User for reauthentication and consent. Valid options are
none, login, consent, select_account.
state
Opaque value used to maintain state between the request and the callback.
nonce
String value used to associate a Client session with an ID Token, and to mitigate replay attacks.
response_mode
Send the token response as a form post instead of a fragment encoded redirect
redirect_uri
Where do we want to end up after the authentication.
code_challenge
Enter code_challenge (
CalculateCodeChallenge
)