জালিয়াতি বিরোধী টোকেনটিতে আমার একটি সমস্যা রয়েছে :( আমি আমার নিজস্ব ব্যবহারকারী শ্রেণি তৈরি করেছি যা ভাল কাজ করেছে তবে আমি যখনই অ্যাকাউন্ট / নিবন্ধন পৃষ্ঠাতে যাব তখন আমি একটি ত্রুটি পাচ্ছি The ত্রুটিটি হ'ল:
' Http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name ઓળખાણকারী ' বা ' http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider ' টাইপের একটি দাবি ছিল সরবরাহিত দাবিাদির উপস্থিতি নেই। দাবি-ভিত্তিক প্রমাণীকরণের সাথে অ্যান্টি-জালিয়াতি টোকেন সমর্থন সক্ষম করতে, দয়া করে কনফিগার করা দাবি সরবরাহকারী এটি উত্পন্ন দাবী দাবী দৃষ্টান্তগুলিতে এই উভয় দাবি সরবরাহ করছে তা যাচাই করুন। যদি কনফিগার করা দাবী সরবরাহকারী পরিবর্তে কোনও অনন্য সনাক্তকারী হিসাবে আলাদা দাবি ধরণের ব্যবহার করে তবে এটি স্থিতিশীল সম্পত্তি অ্যান্টিফোর্জিসিফাইগ সেট করে কনফিগার করা যেতে পারে niউনিক ক্লেইমটাইপআইডেন্টিফায়ার।
আমি এই নিবন্ধটি পেয়েছি:
সুতরাং আমি আমার অ্যাপ্লিকেশন_সার্ট পদ্ধতিটি এতে পরিবর্তন করেছি :
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AntiForgeryConfig.UniqueClaimTypeIdentifier = ClaimTypes.Email;
}
তবে আমি যখন এটি করি তখন আমি এই ত্রুটিটি পেয়েছি:
' Http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress ' টাইপের একটি দাবি প্রদত্ত দাবি দাবীতে উপস্থিত ছিল না।
এর আগে কেউ কি এসে গেছে? যদি তা হয় তবে কীভাবে এটি সমাধান করবেন জানেন?
অগ্রিম
চিয়ারস , r3plica
আপডেট 1
এখানে আমার কাস্টম ব্যবহারকারী শ্রেণি:
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; }
}
এবং ব্যবহারকারী শ্রেণি হ'ল মাইক্রোসফ্ট.এএসপনেট.আইডেন্টিটি.এন্টিটি ফ্রেমওয়ার্ক।উজার ক্লাস। আমার অ্যাকাউন্টকন্ট্রোলার দেখে মনে হচ্ছে:
[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] অ্যাট্রিবিউট দিয়ে সজ্জিত হত , তবে এটি সেখানে কাজ বন্ধ করে দিয়েছে।
আমি আশা করি যে যথেষ্ট কোড :)