-
Notifications
You must be signed in to change notification settings - Fork 842
Support for client_secret_basic #892
Comments
My preference for this would be a property named https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#token-endpoint-auth-method
|
Hi, |
Would be good to have support for basic auth since using post is not recommended. https://tools.ietf.org/html/rfc6749#section-2.3.1
|
+1 Any news on when it could be added? |
Hi, Any news ? |
Add client_secret_basic auth exchangeCode Method. #892
Related to Issue #843
This library uses
client_secret_post
which puts theclient_id
andclient_secret
in the body.You should support
client_secret_basic
whereclient_id
andclient_secret
is base64 encoded in theAuthorization
header in accordance to to OAuth2.0 and OpenID Connect specifications.The OAuth 2.0 Authorization Framework - 2.3.1. Client Authentication
OpenID Connect Core 1.0 - 9. Client Authentication
The text was updated successfully, but these errors were encountered: