私はMVCアプリケーションの認証サーバーとしてIdentityserver3を使用しています。したがって、私のStartup
クラスは、このようなものです:提供されたClaimsIdentityに '.../nameidentifier'が存在しません
public void Configuration(IAppBuilder app)
{
app.UseExternalSignInCookie();
JwtSecurityTokenHandler.InboundClaimTypeMap = new Dictionary<string, string>();
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = "Cookies"
});
app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions
{
Authority = "http://localhost:5000/",
ClientId = "mvc",
RedirectUri = "http://localhost:12262/",
ResponseType = "id_token",
UseTokenLifetime = false,
SignInAsAuthenticationType = "Cookies"
});
}
これは私のIdentityUser
サブクラスです:
public class ApplicationUser : IdentityUser
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
userIdentity.AddClaim(new Claim("http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier", this.Email));
userIdentity.AddClaim(
new Claim("http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider",
this.Email));
return userIdentity;
}
public UserType UserType { get; set; }
....
}
これは私のGlobal.asax.cs
です:
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AntiForgeryConfig.UniqueClaimTypeIdentifier = ClaimTypes.NameIdentifier;
}
しかし含む行で私のAccount/Register
ビューで@Html.AntiForgeryToken()
このエラーが表示されます:
タイプ
' http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier ' was not present on the provided ClaimsIdentity.
の主張は、私は(多分どこでもIdentityserver3を使用していない)同様の問題を持つSO上のいくつかの質問を見てきましたが、その解決策は、私はそれらを使用していた少なくとも方法、動作しないようです。