docs: add required parameter for authorization code grant (#8506) (#8709)

# Which Problems Are Solved

The current docs of the Authorization code grant do not mention that for
the authentication method type "None (PKCE)", you need to additionally
provide a `client_id` parameter.

# How the Problems Are Solved

Missing parameter is added to the docs.

# Additional Context

- Closes #8506
This commit is contained in:
alfa-alex 2024-10-04 14:15:15 +02:00 committed by GitHub
parent 0bcf136f6f
commit 78b19c32ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -219,10 +219,11 @@ Send your `client_id` and `client_secret` as parameters in the body:
</TabItem>
<TabItem value="none">
Send your `code_verifier` for us to recompute the `code_challenge` of the authorization request.
Send your `client_id` and `code_verifier` for us to recompute the `code_challenge` of the authorization request.
| Parameter | Description |
| ------------- | ------------------------------------------------------------ |
| client_id | client_id of the application |
| code_verifier | code_verifier previously used to generate the code_challenge |
</TabItem>