asp.net-core – 如何使用ASP.NET Core中的JWT授权重定向到401上的登录页面

前端之家收集整理的这篇文章主要介绍了asp.net-core – 如何使用ASP.NET Core中的JWT授权重定向到401上的登录页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的Startup.cs中有这个JWT授权配置:
  1. services.AddAuthentication(opts =>
  2. {
  3. opts.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
  4. opts.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
  5. opts.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
  6. })
  7. .AddJwtBearer(opts =>
  8. {
  9. opts.RequireHttpsMetadata = false;
  10. opts.SaveToken = true;
  11. opts.TokenValidationParameters = new TokenValidationParameters()
  12. {
  13. IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("my_secret_key")),ValidIssuer = "iss",ValidAudience = "aud",ValidateIssuerSigningKey = true,ValidateLifetime = true
  14. };
  15. });

我的HomeController有[Authorize]属性.因此,在访问Home / Index时,我收到了401响应,并且我看到了一个空白页面.我想重定向到我的帐户/登录页面,但我不知道该怎么做.

我读到这不应该自动重定向,因为如果它们未被授权然后你重定向它们对API调用没有意义,那么我将如何将它们带到401上的登录页面的正确方法是什么.

请记住,在这个项目中,我同时拥有带有[Authorize]属性的Web API和Action方法,因此我只需要在它是一个action方法重定向.

解决方法

您可以使用 StatusCodePages middleware.在Configure方法添加以下内容
  1. app.UseStatusCodePages(async context => {
  2. var request = context.HttpContext.Request;
  3. var response = context.HttpContext.Response;
  4.  
  5. if (response.StatusCode == (int)HttpStatusCode.Unauthorized)
  6. // you may also check requests path to do this only for specific methods
  7. // && request.Path.Value.StartsWith("/specificPath")
  8.  
  9. {
  10. response.Redirect("/account/login")
  11. }
  12. });

I read that this shouldn’t automatically redirect because it won’t make sense to API calls

这与API调用有关,它返回页面以外的数据.假设您的应用在后台调用API.将操作重定向登录页面没有帮助,因为应用程序不知道如何在没有用户参与的情况下在后台验证自身.

猜你在找的.NET Core相关文章