我想我正在尝试在项目中混合使用两个提供程序,但我希望将 websecurity 与我的表单例份验证结合使用。我需要使用 Facebook 和 google 进行 OAUTH 身份验证的网络安全。

我尝试使用 facebook 登录时遇到的错误是

要调用此方法, Membership.Provider 属性必须是 ExtendedMembershipProvider 的实例。

这是代码示例。我怎样才能同时使用两者?

public ActionResult ExternalLoginCallback(string returnUrl)
        {
            AuthenticationResult result = OAuthWebSecurity.VerifyAuthentication(Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl }));
            if (!result.IsSuccessful)
            {
                return RedirectToAction("ExternalLoginFailure");
            }

            if (OAuthWebSecurity.Login(result.Provider, result.ProviderUserId, createPersistentCookie: false))
            {
                return RedirectToLocal(returnUrl);
            }

            if (User.Identity.IsAuthenticated)
            {
                // If the current user is logged in add the new account
                OAuthWebSecurity.CreateOrUpdateAccount(result.Provider, result.ProviderUserId, User.Identity.Name);
                return RedirectToLocal(returnUrl);
            }
            else
            {
                // User is new, ask for their desired membership name
                string loginData = OAuthWebSecurity.SerializeProviderUserId(result.Provider, result.ProviderUserId);
                ViewBag.ProviderDisplayName = OAuthWebSecurity.GetOAuthClientData(result.Provider).DisplayName;
                ViewBag.ReturnUrl = returnUrl;
                return View("ExternalLoginConfirmation", new RegisterExternalLoginModel { UserName = result.UserName, ExternalLoginData = loginData });
            }
        }


public ActionResult Login(LoginModel model, string returnUrl)
    {
        if (ModelState.IsValid)
        {
            if (Membership.ValidateUser(model.UserName, model.Password))
            {
                FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe);
                if (Url.IsLocalUrl(returnUrl))
                {
                    return Redirect(returnUrl);
                }
                else
                {
                    return RedirectToAction("Index", "Home");
                }
            }
            else
            {
                ModelState.AddModelError("", "The user name or password provided is incorrect.");
            }
        }

        // If we got this far, something failed, redisplay form
        return View(model);
    }

最佳答案

可能与我相同的问题有关 MVC4 ExtendedMembershipProvider and entityframework
.. 我删除了通用提供程序 nuget 包,这个特定的错误消失了。

Jon Galloway 的这篇 "very recent" 文章也可能有所帮助。

关于asp.net-membership - ASP.NET MVC4 中的 WebSecurity 与 FormsAuthentication,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12061953/

10-11 11:42