Merge pull request #851 from bcmmbaga/bug/oidc-config

Resolve issue with AuthIssuer URL assignment in auth0
This commit is contained in:
pascal-fischer 2023-05-12 17:25:41 +02:00 committed by GitHub
commit c2770c7bf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ func NewAuth0Manager(oidcConfig OIDCConfig, config Auth0ClientConfig,
}
helper := JsonParser{}
config.AuthIssuer = oidcConfig.TokenEndpoint
config.AuthIssuer = oidcConfig.Issuer
config.GrantType = "client_credentials"
if config.ClientID == "" {