Skip to content

Commit

Permalink
Use correct auth method string in OpenIdConfiguration default constru…
Browse files Browse the repository at this point in the history
…ctor

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
  • Loading branch information
lachlan-roberts committed Aug 16, 2021
1 parent b91c3fd commit b050309
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ public OpenIdConfiguration(String provider, String clientId, String clientSecret
public OpenIdConfiguration(String issuer, String authorizationEndpoint, String tokenEndpoint,
String clientId, String clientSecret, HttpClient httpClient)
{
this(issuer, authorizationEndpoint, tokenEndpoint, clientId, clientSecret, "post", httpClient);
this(issuer, authorizationEndpoint, tokenEndpoint, clientId, clientSecret, "client_secret_post", httpClient);
}

/**
Expand Down

0 comments on commit b050309

Please sign in to comment.