Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added code verifier as a parameter. #18

Merged
merged 7 commits into from
Nov 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/api/exchangeOAuthCodeForAccessToken.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"uri": "/oauth2/token",
"comments": [
"Exchanges an OAuth authorization code for an access token.",
"If you will be using the Authorization Code grant, you will make a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint for an access token."
"Makes a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint for an access token."
],
"method": "post",
"methodName": "exchangeOAuthCodeForAccessToken",
Expand Down Expand Up @@ -53,4 +53,4 @@
"javaType": "String"
}
]
}
}
64 changes: 64 additions & 0 deletions src/main/api/exchangeOAuthCodeForAccessTokenUsingPKCE.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"uri": "/oauth2/token",
"comments": [
"Exchanges an OAuth authorization code and code_verifier for an access token.",
"Makes a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint and a code_verifier for an access token."
],
"method": "post",
"methodName": "exchangeOAuthCodeForAccessTokenUsingPKCE",
"successResponse": "AccessToken",
"errorResponse": "OAuthError",
"anonymous": true,
"params": [
{
"name": "code",
"comments": [
"The authorization code returned on the /oauth2/authorize response."
],
"type": "form",
"javaType": "String"
},
{
"name": "client_id",
"comments": [
"(Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you you are attempting to authenticate. This parameter is optional when the Authorization header is provided."
],
"type": "form",
"javaType": "String"
},
{
"name": "client_secret",
"comments": [
"(Optional) The client secret. This value may optionally be provided in the request body instead of the Authorization header."
],
"type": "form",
"javaType": "String"
},
{
"name": "grant_type",
"comments": [
"The grant type to be used. This value must be set to authorization_code"
],
"type": "form",
"javaType": "String",
"constant": true,
"value": "authorization_code"
},
{
"name": "redirect_uri",
"comments": [
"The URI to redirect to upon a successful request."
],
"type": "form",
"javaType": "String"
},
{
"name": "code_verifier",
"comments": [
"The random string generated previously. Will be compared with the code_challenge sent previously, which allows the OAuth provider to authenticate your app."
],
"type": "form",
"javaType": "String"
}
]
}