当我尝试使用Facebook或Google登录时,GetExternalLoginInfoAsync始终返回null

时间:2014-08-20 10:05:48

标签: c# asp.net-mvc asp.net-mvc-5 owin

我的OWIN身份验证存在问题。当我尝试使用Facebook或Google登录时,我始终会从GetExternalLoginInfoAsync()收到空值。

但是有一些神秘的案例..当我打开提琴手。我使用这种方法获得了正确的数据。

我无法理解

var loginInfo = await AuthenticationManager.GetExternalLoginInfoAsync();

提前致谢!!

1 个答案:

答案 0 :(得分:6)

我通过添加此代码解决了我的问题

context.RequestContext.HttpContext.Response.SuppressFormsAuthenticationRedirect = true;
在课堂上

    private class ChallengeResult : HttpUnauthorizedResult
    {
        public ChallengeResult(string provider, string redirectUri)
            : this(provider, redirectUri, null)
        {
        }

        public ChallengeResult(string provider, string redirectUri, string userId)
        {
            LoginProvider = provider;
            RedirectUri = redirectUri;
            UserId = userId;
        }

        public string LoginProvider { get; set; }
        public string RedirectUri { get; set; }
        public string UserId { get; set; }

        public override void ExecuteResult(ControllerContext context)
        {
            // this line fixed the problem with returing null
            context.RequestContext.HttpContext.Response.SuppressFormsAuthenticationRedirect = true;

            var properties = new AuthenticationProperties() { RedirectUri = RedirectUri };
            if (UserId != null)
            {
                properties.Dictionary[XsrfKey] = UserId;
            }
            context.HttpContext.GetOwinContext().Authentication.Challenge(properties, LoginProvider);
        }
    }

它修复了返回NULL的问题。

注意:使用twitter授权登录时不要使用fiddler。您将收到错误。

相关问题