We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a3c7f commit 81c75eeCopy full SHA for 81c75ee
internal/oauth2/request.go
@@ -112,6 +112,8 @@ func (r *Request) AuthenticateClient(
112
var err error
113
114
switch cconfig.AuthMethod {
115
+ case NoneAuthMethod:
116
+ r.Form.Set("client_id", cconfig.ClientID)
117
case ClientSecretPostAuthMethod:
118
r.Form.Set("client_id", cconfig.ClientID)
119
r.Form.Set("client_secret", cconfig.ClientSecret)
0 commit comments