AspNew.Security.OpenIdConnect.Serverを使用してトークンを発行し、Microsoft.AspNetCore.Authentication.JwtBearerを使用して検証するJWTトークンを発行および消費する単純なエンドポイントを機能させようとしています。
トークンをうまく生成できますが、トークンを認証しようとすると、エラー_Bearer was not authenticated. Failure message: No SecurityTokenValidator available for token: {token}
_で失敗します
この時点で、私はすべてを取り除き、次のものを持っています:
project.json
_{
"dependencies": {
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
"AspNet.Security.OAuth.Validation": "1.0.0-alpha1-final",
"AspNet.Security.OpenIdConnect.Server": "1.0.0-beta5-final",
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0-rc2-final"
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
"version": "1.0.0-preview1-final",
"imports": "portable-net45+win8+dnxcore50"
}
},
"frameworks": {
"net461": { }
},
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
"publishOptions": {
"include": [
"wwwroot",
"Views",
"appsettings.json",
"web.config"
]
},
"scripts": {
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
}
}
_
Startup.csメソッド:
_// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddAuthorization(options =>
{
options.AddPolicy(JwtBearerDefaults.AuthenticationScheme,
builder =>
{
builder.
AddAuthenticationSchemes(JwtBearerDefaults.AuthenticationScheme).
RequireAuthenticatedUser().
Build();
}
);
}
);
services.AddAuthentication();
services.AddDistributedMemoryCache();
services.AddMvc();
services.AddOptions();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
var jwtOptions = new JwtBearerOptions()
{
AuthenticationScheme = JwtBearerDefaults.AuthenticationScheme,
AutomaticAuthenticate = true,
Authority = "http://localhost:5000/",
Audience = "http://localhost:5000/",
RequireHttpsMetadata = false
};
jwtOptions.ConfigurationManager = new ConfigurationManager<OpenIdConnectConfiguration>
(
metadataAddress: jwtOptions.Authority + ".well-known/openid-configuration",
configRetriever: new OpenIdConnectConfigurationRetriever(),
docRetriever: new HttpDocumentRetriever { RequireHttps = false }
);
app.UseJwtBearerAuthentication(jwtOptions);
app.UseOpenIdConnectServer(options =>
{
options.AllowInsecureHttp = true;
options.AuthorizationEndpointPath = Microsoft.AspNetCore.Http.PathString.Empty;
options.Provider = new OpenIdConnectServerProvider
{
OnValidateTokenRequest = context =>
{
context.Skip();
return Task.FromResult(0);
},
OnGrantResourceOwnerCredentials = context =>
{
var identity = new ClaimsIdentity(context.Options.AuthenticationScheme);
identity.AddClaim(ClaimTypes.NameIdentifier, "[unique id]");
identity.AddClaim("urn:customclaim", "value", OpenIdConnectConstants.Destinations.AccessToken, OpenIdConnectConstants.Destinations.IdentityToken);
var ticket = new AuthenticationTicket(
new ClaimsPrincipal(identity),
new Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties(),
context.Options.AuthenticationScheme);
ticket.SetScopes("profile", "offline_access");
context.Validate(ticket);
return Task.FromResult(0);
}
};
});
app.UseMvc();
}
_
x-url-encoded POST to http:// localhost:50 with grant_type = password、username = foo、password = barを送信すると、予想されるaccess_tokenが生成されます。
ValuesControllerに[Authorize("Bearer")]
属性を追加しましたが、これはJwtBearerMiddlewearが呼び出されたときに期待どおりに機能していますが、トークンを検証することができません。
誰かがこれを.netコアRC2で動作させていますか?私はRC1で同じことをしていますが、これを実現できませんでした。
ありがとう。
Beta5(ASP.NET Core RC2用)以降、 OpenID Connectサーバーミドルウェアは、アクセストークンのデフォルト形式としてJWTを使用しなくなりました 。代わりに、(認証Cookieとまったく同じように)堅牢なASP.NET Core Data Protectionスタックによって暗号化された不透明なトークンを使用します。
発生しているエラーを修正する方法は3つあります。
AspNet.Security.OAuth.Validation
_にある_project.json
_参照を保持し、app.UseJwtBearerAuthentication(...)
をapp.UseOAuthValidation()
に置き換えます。 _Microsoft.AspNetCore.Authentication.JwtBearer
_から_project.json
_を削除することもできます。options.AccessTokenHandler = new JwtSecurityTokenHandler();
を呼び出して、OpenID ConnectサーバーミドルウェアがJWTトークンを使用するように強制します。また、ticket.SetResources(...)
を呼び出して、適切なオーディエンスをJWTトークンにアタッチする必要もあります(詳細については、この他の SO post を参照してください)。ValidateIntrospectionRequest
イベントを実装する必要があります。何をしているのかわかっている場合にのみ使用してください。