2017-08-12 71 views
0

我正在使用基于令牌的系统在asp.net核心中首次使用。我已经按照这篇文章:.net核心JwtBearerAuthentication未定义

https://stormpath.com/blog/token-authentication-asp-net-core

我startup.cs看起来是这样的:

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Threading.Tasks; 
using blog.Persistence; 
using Microsoft.AspNetCore.Builder; 
using Microsoft.AspNetCore.Hosting; 
using Microsoft.AspNetCore.SpaServices.Webpack; 
using Microsoft.Extensions.Configuration; 
using Microsoft.Extensions.DependencyInjection; 
using Microsoft.Extensions.Logging; 
using Microsoft.EntityFrameworkCore; 
using AutoMapper; 
using System.Text; 
using Microsoft.IdentityModel.Tokens; 

namespace WebApplicationBasic 
{ 
    public class Startup 
    { 
     public Startup(IHostingEnvironment env) 
     { 
      var builder = new ConfigurationBuilder() 
       .SetBasePath(env.ContentRootPath) 
       .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) 
       .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) 
       .AddEnvironmentVariables(); 
      Configuration = builder.Build(); 
     } 

     public IConfigurationRoot Configuration { get; } 

     // This method gets called by the runtime. Use this method to add services to the container. 
     public void ConfigureServices(IServiceCollection services) 
     { 
      services.AddAutoMapper(); 

      services.AddDbContext<VegaDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("Default"))); 

      // Add framework services. 
      services.AddMvc(); 
     } 

     // 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) 
     { 
      // secretKey contains a secret passphrase only your server knows 
      var signingKey = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(Configuration.GetSection("TokenAuthentication:SecretKey").Value)); 

      var tokenValidationParameters = new TokenValidationParameters 
      { 
       // The signing key must match! 
       ValidateIssuerSigningKey = true, 
       IssuerSigningKey = signingKey, 

       // Validate the JWT Issuer (iss) claim 
       ValidateIssuer = true, 
       ValidIssuer = "ExampleIssuer", 

       // Validate the JWT Audience (aud) claim 
       ValidateAudience = true, 
       ValidAudience = "ExampleAudience", 

       // Validate the token expiry 
       ValidateLifetime = true, 

       // If you want to allow a certain amount of clock drift, set that here: 
       ClockSkew = TimeSpan.Zero 
      }; 

      app.UseJwtBearerAuthentication(new JwtBearerOptions 
      { 
       AutomaticAuthenticate = true, 
       AutomaticChallenge = true, 
       TokenValidationParameters = tokenValidationParameters 
      }); 

      loggerFactory.AddConsole(Configuration.GetSection("Logging")); 
      loggerFactory.AddDebug(); 

      if (env.IsDevelopment()) 
      { 
       app.UseDeveloperExceptionPage(); 
       app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions { 
        HotModuleReplacement = true 
       }); 
      } 
      else 
      { 
       app.UseExceptionHandler("/Home/Error"); 
      } 

      app.UseStaticFiles(); 

      app.UseMvc(routes => 
      { 
       routes.MapRoute(
        name: "default", 
        template: "{controller=Home}/{action=Index}/{id?}"); 

       routes.MapSpaFallbackRoute(
        name: "spa-fallback", 
        defaults: new { controller = "Home", action = "Index" }); 
      }); 
     } 
    } 
} 

的问题是,UseJwtBearerAuthenticationJwtBearerOptions是不确定的。什么可能是错的?我需要获得另一个nuget包吗?

+0

您是否添加了对正确包装的引用? – Tseng

回答

0

继续@ Tseng的评论,我从Github下载了参考代码并删除了Microsoft.AspNetCore.Authentication.JwtBearer软件包,果然我得到了“UseJwtBearerAuthentication的类型或名称空间名称无法找到”的错误和JwtBearerOptions。

当重新安装软件包时,我注意到最新版本将无法安装 - 我试过版本1.1.1,它安装并给了我一个成功的版本。