1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
Eric Eastwood 011c69487b Add changelog 2025-02-19 16:01:26 -06:00
Eric Eastwood 534234edd1 client_id is a required parameter in a OAuth access token request
> ##### 4.1.3.  Access Token Request
>
> [...]
>
>    client_id
>         REQUIRED, if the client is not authenticating with the
>         authorization server as described in Section 3.2.1.
>
> *-- https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.3*
2025-02-19 15:52:07 -06:00
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Pass required parameter `client_id` when making an OAuth access token request.
+1
View File
@@ -731,6 +731,7 @@ class OidcProvider:
}
args = {
"client_id": self._client_auth.client_id,
"grant_type": "authorization_code",
"code": code,
"redirect_uri": self._callback_url,