嗨,我在 MVC4 应用程序中使用带有表单身份验证的 acs 联合。在登录期间,我的应用程序可以完美地通过 gmail 等进行 SSO 后进行身份验证并重定向到主页。我想保存其电子邮件 ID 与数据库记录的电子邮件匹配的用户的代理 ID。但问题是一段时间后代理 ID 会自动删除并声明当我尝试通过此代码从其他页面访问代理 ID 时,我添加了删除代理 ID 并显示为 null 的位置。
((ClaimsIdentity)HttpContext.Current.User.Identity).Claims.Where(c => c.Type.Equals(ClaimTypes.Role)).FirstOrDefault();
当用户在输入 gmail 凭据后重定向时,登录方法如下。
[HttpPost]
[ValidateInput(false)]
[AllowAnonymous]
public ActionResult SignIn()
{
UserRoles userObj=null;
Customer customerObj=null;
ClaimsIdentity identity = User.Identity as ClaimsIdentity;
var claimCollection = identity.Claims;
Dictionary<string, string> tempClaims = new Dictionary<string, string>();
foreach (Claim claim in claimCollection)
{
tempClaims.Add(claim.Type, claim.Value);
}
if (tempClaims["http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider"] != null)
{
string strIdentifier = string.Empty;
if (tempClaims["http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider"] == "uri:WindowsLiveID")
strIdentifier = tempClaims["http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"];
else
strIdentifier = tempClaims["http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"];
userObj = repository.Filter(f => f.EmailId.Equals(strIdentifier)).FirstOrDefault();
if (userObj != null)
{
identity.AddClaim(new Claim(ClaimTypes.Role, userObj.Role));
identity.AddClaim(new Claim(ClaimTypes.SerialNumber, userObj.AgentID.ToString()));
}
}
return User.Identity.IsAuthenticated ? RedirectToAction("Index", "Home") : RedirectToAction("Login");
}