Closed HarperRussell closed 1 year ago
Did you replace the {DOMAIN}
and {CLIENTID}
with the correct values?
Yes
I guess we will need more information in order to try and help. Can you share something that reproduces the issue so we can investigate ?
I had the same issue with Auth0.OidcClient.WPF and I was able to resolve it by using an older version of the NuGet Package (3.2.3)
Closing this because there hasn't been much information to work with.
If this come up again, please open a new issue with more information for us to work with.
I am receiving the following error when using the Auth0.OidcClient.WinForms assembly (3.2.8) in a ASP.NET Web Application targeting .NET 4.8:
Error Loading discovery document: Issuer name is missing
It's a simple implementation of the example code:
private Auth0Client client;
client = new Auth0Client(new Auth0ClientOptions { Domain = "{DOMAIN}", ClientId = "{CLIENTID}" });
await client.LoginAsync(); // this is where it fails
Is this a known issue? Are there any resolutions?