File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ Note that this calls your model with additional arguments ``codeChallenge`` and
109
109
C. The client then sends the authorization code in the Access Token Request as usual but includes the "code_verifier" secret generated at (A).
110
110
111
111
This is usually done in your token endpoint, that uses ``OAuth2Server.token ``.
112
- Note that your client should have kept ``code_verifier `` a secret until this step and now includes it as param for the token endpoint call.
113
112
114
113
::
115
114
@@ -130,6 +129,9 @@ Note that your client should have kept ``code_verifier`` a secret until this ste
130
129
})
131
130
}
132
131
132
+ Note that your client should have kept ``code_verifier `` a secret until this step and now includes it as param for the token endpoint call.
133
+
134
+
133
135
D. The authorization server transforms "code_verifier" and compares it to "t(code_verifier)" from (B). Access is denied if they are not equal.
134
136
135
137
This will call ``model.getAuthorizationCode `` to load the code.
You can’t perform that action at this time.
0 commit comments