Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ This is the flow that mobile apps use to access an API. Use this endpoint to exc
Your application's Client ID.
</ParamField>

<ParamField body="client_secret" type="string">
The `client_secret` of your application. Required for confidential applications using the `client_secret_post` token endpoint authentication method.
</ParamField>

<ParamField body="code" type="string" required>
The Authorization Code received from the initial `/authorize` call.
</ParamField>
Expand Down
4 changes: 4 additions & 0 deletions main/docs/oas/authentication/authentication-api-oas.json
Comment thread
BcnCarlos marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -3600,6 +3600,10 @@
"type": "string",
"description": "Your application's Client ID"
},
"client_secret": {
"type": "string",
"description": "Your application's Client Secret. Required for confidential clients."
},
"code_verifier": {
"type": "string",
"description": "The original code verifier for the PKCE request. The authorization server will hash this and compare it to the code_challenge from the authorization request.",
Expand Down
Loading