We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using Azure as IDP and getting following error when calling _oidcClient.LoginAsync() :
Error loading discovery document: Issuer name does not match authority: https://login.microsoftonline.com/{tenantid}/v2.0
I have specified the following client options:
var options = new OidcClientOptions { Authority = "https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration", ClientId = "AzureDemo", Scope = "openid", RedirectUri = "http://localhost/winforms.client", Browser = new WinFormsWebView() };
How can I specify Issuer Name without switching off Issuer validation?
The text was updated successfully, but these errors were encountered:
you cannot with the common endpoint in AAD since you don't know the issuer upfront.
Sorry, something went wrong.
No branches or pull requests
I am using Azure as IDP and getting following error when calling _oidcClient.LoginAsync() :
Error loading discovery document: Issuer name does not match authority: https://login.microsoftonline.com/{tenantid}/v2.0
I have specified the following client options:
How can I specify Issuer Name without switching off Issuer validation?
The text was updated successfully, but these errors were encountered: