You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// AuthorizeHandler is the handler for the /authorize route
23
-
// required params
24
-
// ?redirect_uri = redirect url
25
-
// ?response_mode = to decide if result should be html or re-direct
26
-
// state[recommended] = to prevent CSRF attack (for authorizer its compulsory)
27
-
// code_challenge = to prevent CSRF attack
28
-
// code_challenge_method = to prevent CSRF attack [only sh256 is supported]
53
+
// Check the flow for generating and verifying codes: https://developer.okta.com/blog/2019/08/22/okta-authjs-pkce#:~:text=PKCE%20works%20by%20having%20the,is%20called%20the%20Code%20Challenge.
29
54
30
-
// check the flow for generating and verifying codes: https://developer.okta.com/blog/2019/08/22/okta-authjs-pkce#:~:text=PKCE%20works%20by%20having%20the,is%20called%20the%20Code%20Challenge.
55
+
// Check following docs for understanding request / response params for various types of requests: https://auth0.com/docs/authenticate/login/oidc-conformant-authentication/oidc-adoption-auth-code-flow
0 commit comments