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
// Failed only occurs when the user does not exist
518
518
errors.Add("The requested provider ("+loginInfo.LoginProvider+") has not been linked to an account, the provider must be linked from the back office.");
// This occurs when the external provider has approved the login but custom logic in OnExternalLogin has denined it.
523
+
errors.Add($"The user {loginInfo.Principal.Identity.Name} for the external provider {loginInfo.ProviderDisplayName} has not been accepted and cannot sign in.");
errors.Add("The requested provider ("+loginInfo.LoginProvider+") has not been linked to an account, the provider must be linked from the back office.");
Logger.LogWarning("The AutoLinkOptions of the external authentication provider '{LoginProvider}' have refused the login based on the OnExternalLogin method. Affected user id: '{UserId}'",loginInfo.LoginProvider,user.Id);
Logger.LogWarning("The AutoLinkOptions of the external authentication provider '{LoginProvider}' have refused the login based on the OnExternalLogin method. Affected user id: '{UserId}'",loginInfo.LoginProvider,user.Id);
0 commit comments