Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to refresh JWT Token automatically by ASP.NET Core

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces ASP.NET Core how to achieve automatic refresh JWT Token related knowledge, the content is detailed and easy to understand, simple and fast operation, has a certain reference value, I believe that everyone after reading this ASP.NET Core how to achieve automatic refresh JWT Token article will have a harvest, let's take a look at it.

Principle

We read the Authorization header of each request and get the JWT Token of the current request.

Check the expiration time of the current token. If it is within 30 minutes, then we generate a JWT Token with the new expiration time and return it through the X-Refresh-Token header.

When the client checks the X-Refresh-Token header, it replaces the saved JWT Token, and the next time it sends the request, it will use the latest token.

Realize

Create a Middleware that checks the JWT Token expiration time and generates a new token return:

Public async Task InvokeAsync (HttpContext context) {JwtSecurityToken token = null;string authorization = context.Request.Headers ["Authorization"]; if (! string.IsNullOrEmpty (authorization) & & authorization.StartsWith ("Bearer")) token = new JwtSecurityTokenHandler () .ReadJwtToken ("Bearer" .length); / / Refresh Tokenif (token! = null&& token.ValidTo > DateTime.UtcNow&& token.ValidTo.AddMinutes (- 30)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report