You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my .NET blazer application, the after successful authentication using Azure B2C (azure sign-in log shows 'Success') , the error page is returned with the URL https://localhost: /signin-oidc
Unfortunately, there are no logs to illuminate the cause of the error.
The log records OnRedirectToIdentityProvider event, but there is no logs on OnRemoteFailure or OnTokenResponseReceived.
Could you please advise me on how to resolve this error or log it for reference?
Thanks in advance. Any help appreciated.
The text was updated successfully, but these errors were encountered:
In my .NET blazer application, the after successful authentication using Azure B2C (azure sign-in log shows 'Success') , the error page is returned with the URL https://localhost: /signin-oidc
Unfortunately, there are no logs to illuminate the cause of the error.
`services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApp(options =>
{
options.RemoteAuthenticationTimeout = TimeSpan.FromSeconds(10);
builder.Configuration.Bind("OpenIDConnect", options);
The log records OnRedirectToIdentityProvider event, but there is no logs on OnRemoteFailure or OnTokenResponseReceived.
Could you please advise me on how to resolve this error or log it for reference?
Thanks in advance. Any help appreciated.
The text was updated successfully, but these errors were encountered: