मुझे विरोधी जालसाजी टोकन के साथ एक समस्या हो रही है :( मैंने अपना उपयोगकर्ता वर्ग बनाया है जो ठीक काम करता है लेकिन अब जब भी मैं / खाता / रजिस्टर पृष्ठ पर जाता हूं तो मुझे एक त्रुटि मिल रही है । त्रुटि है:
' Http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier ' या ' http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identlproproider ' का दावा था प्रदान किए गए दावे पर मौजूद नहीं है। दावों पर आधारित प्रमाणीकरण के साथ विरोधी जालसाजी टोकन समर्थन को सक्षम करने के लिए, कृपया सत्यापित करें कि कॉन्फ़िगर किया गया दावा प्रदाता इन दोनों दावों को प्रदान कर रहा है, जो दावा करता है कि यह उत्पन्न करता है। यदि कॉन्फ़िगर किया गया दावा प्रदाता इसके बजाय एक अलग पहचानकर्ता के रूप में एक अद्वितीय पहचानकर्ता का उपयोग करता है, तो इसे स्थैतिक संपत्ति AntiForgeryConfig.UniqueClaimTypeIdentifier पर सेट करके कॉन्फ़िगर किया जा सकता है।
मुझे यह लेख मिला:
इसलिए मैंने अपनी Application_Start विधि को इसमें बदल दिया :
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AntiForgeryConfig.UniqueClaimTypeIdentifier = ClaimTypes.Email;
}
लेकिन जब मैं ऐसा करता हूं, मुझे यह त्रुटि मिलती है:
प्रदान किए गए ClaimsIdentity पर ' http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress ' का दावा मौजूद नहीं था।
क्या किसी ने पहले इसका सामना किया है? यदि हां, तो क्या आप जानते हैं कि इसे कैसे हल किया जाए?
अग्रिम में चीयर्स,
r3plica
अपडेट १
यहाँ मेरा कस्टम उपयोगकर्ता वर्ग है:
public class Profile : User, IProfile
{
public Profile()
: base()
{
this.LastLoginDate = DateTime.UtcNow;
this.DateCreated = DateTime.UtcNow;
}
public Profile(string userName)
: base(userName)
{
this.CreatedBy = this.Id;
this.LastLoginDate = DateTime.UtcNow;
this.DateCreated = DateTime.UtcNow;
this.IsApproved = true;
}
[NotMapped]
public HttpPostedFileBase File { get; set; }
[Required]
public string CompanyId { get; set; }
[Required]
public string CreatedBy { get; set; }
public string ModifiedBy { get; set; }
public DateTime DateCreated { get; set; }
public DateTime? DateModified { get; set; }
public DateTime LastLoginDate { get; set; }
[Required(ErrorMessageResourceType = typeof(Resources.Resources), ErrorMessageResourceName = "RequiredTitle")]
public string Title { get; set; }
[Required(ErrorMessageResourceType = typeof(Resources.Resources), ErrorMessageResourceName = "RequiredFirstName")]
public string Forename { get; set; }
[Required(ErrorMessageResourceType = typeof(Resources.Resources), ErrorMessageResourceName = "RequiredLastName")]
public string Surname { get; set; }
[Required(ErrorMessageResourceType = typeof(Resources.Resources), ErrorMessageResourceName = "RequiredEmail")]
public string Email { get; set; }
public string JobTitle { get; set; }
public string Telephone { get; set; }
public string Mobile { get; set; }
public string Photo { get; set; }
public string LinkedIn { get; set; }
public string Twitter { get; set; }
public string Facebook { get; set; }
public string Google { get; set; }
public string Bio { get; set; }
public string CompanyName { get; set; }
[Required(ErrorMessageResourceType = typeof(Resources.Resources), ErrorMessageResourceName = "RequiredCredentialId")]
public string CredentialId { get; set; }
[Required(ErrorMessageResourceType = typeof(Resources.Resources), ErrorMessageResourceName = "RequiredSecurityCode")]
public bool IsLockedOut { get; set; }
public bool IsApproved { get; set; }
[Display(Name = "Can only edit own assets")]
public bool CanEditOwn { get; set; }
[Display(Name = "Can edit assets")]
public bool CanEdit { get; set; }
[Display(Name = "Can download assets")]
public bool CanDownload { get; set; }
[Display(Name = "Require approval to upload assets")]
public bool RequiresApproval { get; set; }
[Display(Name = "Can approve assets")]
public bool CanApprove { get; set; }
[Display(Name = "Can synchronise assets")]
public bool CanSync { get; set; }
public bool AgreedTerms { get; set; }
public bool Deleted { get; set; }
}
public class ProfileContext : IdentityStoreContext
{
public ProfileContext(DbContext db)
: base(db)
{
this.Users = new UserStore<Profile>(this.DbContext);
}
}
public class ProfileDbContext : IdentityDbContext<Profile, UserClaim, UserSecret, UserLogin, Role, UserRole>
{
}
मैं अपनी रिपॉजिटरी के लिए प्रोफाइल सरल हूं, इस तरह दिखता है:
public interface IProfile
{
string Id { get; set; }
string CompanyId { get; set; }
string UserName { get; set; }
string Email { get; set; }
string CredentialId { get; set; }
}
और उपयोगकर्ता वर्ग Microsoft.AspNet.Identity.EntityFramework.User वर्ग है। मेरा खाता नियंत्रक इस तरह दिखता है:
[Authorize]
public class AccountController : Controller
{
public IdentityStoreManager IdentityStore { get; private set; }
public IdentityAuthenticationManager AuthenticationManager { get; private set; }
public AccountController()
{
this.IdentityStore = new IdentityStoreManager(new ProfileContext(new ProfileDbContext()));
this.AuthenticationManager = new IdentityAuthenticationManager(this.IdentityStore);
}
//
// GET: /Account/Register
[AllowAnonymous]
public ActionResult Register()
{
return View();
}
//
// POST: /Account/Register
[HttpPost]
[AllowAnonymous]
public async Task<ActionResult> Register(RegisterViewModel model)
{
if (ModelState.IsValid)
{
try
{
// Create a profile, password, and link the local login before signing in the user
var companyId = Guid.NewGuid().ToString();
var user = new Profile(model.UserName)
{
CompanyId = companyId,
Title = model.Title,
Forename = model.Forename,
Surname = model.Surname,
Email = model.Email,
CompanyName = model.CompanyName,
CredentialId = model.CredentialId
};
if (await IdentityStore.CreateLocalUser(user, model.Password))
{
//Create our company
var company = new Skipstone.Web.Models.Company()
{
Id = companyId,
CreatedBy = user.Id,
ModifiedBy = user.Id,
Name = model.CompanyName
};
using (var service = new CompanyService())
{
service.Save(company);
}
await AuthenticationManager.SignIn(HttpContext, user.Id, isPersistent: false);
return RedirectToAction("Setup", new { id = companyId });
}
else
{
ModelState.AddModelError("", "Failed to register user name: " + model.UserName);
}
}
catch (IdentityException e)
{
ModelState.AddModelError("", e.Message);
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
//
// POST: /Account/Setup
public ActionResult Setup(string id)
{
var userId = User.Identity.GetUserId();
using (var service = new CompanyService())
{
var company = service.Get(id);
var profile = new Profile()
{
Id = userId,
CompanyId = id
};
service.Setup(profile);
return View(company);
}
}
}
यह [ValidateAntiForgeryToken] विशेषता के साथ सजाया जाता था , लेकिन यह वह जगह है जहां इसने काम करना बंद कर दिया।
मुझे आशा है कि यह पर्याप्त कोड है :)