等待AuthenticationManager.GetExternalLoginInfoAsync()返回null

时间:2014-02-09 01:57:44

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

当我尝试使用外部提供程序登录时,第一次返回null然后我再次按下提供程序,一切都很好。我认为是cookies的一部分,因为当我删除所有cookie并再试一次时会发生错误。

如果我删除所有Session和TempData一切正常,那为什么呢?

public async Task<ActionResult> ExternalLoginCallback(string returnUrl)
{
    var loginInfo = await AuthenticationManager.GetExternalLoginInfoAsync();
    if (loginInfo == null)
    {
        Elmah.ErrorSignal.FromCurrentContext().Raise(new NotImplementedException("Error ExternalLoginCallback"));
        TempData["_Error"] = "El incio de sesión con redes sociales no está disponible en este moemento, intente con su usuario y clave";
        return RedirectToAction("Login");
    }
}

1 个答案:

答案 0 :(得分:3)

我必须创建一个过滤器以及以下

 public class FilterBase : ActionFilterAttribute
    {
        public override void OnActionExecuting(ActionExecutingContext filterContext)
        {
                if (!filterContext.IsChildAction && !filterContext.HttpContext.Request.IsAjaxRequest())
                {
                    /*
                     * MICROSOFT BUG
                     * http://stackoverflow.com/questions/20737578/asp-net-sessionid-owin-cookies-do-not-send-to-browser/21234614#21234614
                     * https://katanaproject.codeplex.com/workitem/197
                     */
                    filterContext.HttpContext.Session["Workaround"] = 0;

                }

        }
        public override void OnActionExecuted(ActionExecutedContext filterContext)
        {

        }
    }