JWT身份认证

This commit is contained in:
hello 2024-03-12 11:35:00 +08:00
parent e6a75861ff
commit 0fb444db99

View File

@ -0,0 +1,67 @@
# 使用 JwtBearer 令牌进行身份验证
## 介绍
JwtBearer 令牌身份验证是一种基于 JSON Web 令牌的身份验证方法, 用于验证用户的身份, 它是一种无状态的身份验证方法, 适用于 Web API 和 Web 应用程序。
## 安装 NuGet 包
```shell
dotnet add package Microsoft.AspNetCore.Authentication.JwtBearer
```
## 自建 Identity Api 终结点
```csharp
builder.Services.AddIdentity<User, Role>(options =>
{
options.SignIn.RequireConfirmedAccount = false;
options.Password.RequireDigit = false;
options.Password.RequireLowercase = false;
options.Password.RequireUppercase = false;
options.Password.RequireNonAlphanumeric = false;
options.Password.RequiredLength = 5;
}).AddEntityFrameworkStores<IdentityServiceDbContext>();
```
## 使用 JwtBearer 验证令牌
```csharp
builder.Services.AddAuthentication(options =>
{
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultSignInScheme = CustomJwtBearerDefaults.AuthenticationScheme;
}).AddJwtBearer(options =>
{
options.TokenValidationParameters.ValidateIssuer = false;
options.TokenValidationParameters.ValidateAudience = false;
options.TokenValidationParameters.IssuerSigningKey = new SymmetricSecurityKey(Encoding.Default.GetBytes(issuerSigningKey));
})
```
## 自定义身份认证处理程序
```csharp
public class CustomJwtBearerDefaults
public class CustomJwtBearerOptions
public class CustomJwtBearerHandler
public class CustomJwtBearerExtensions
```
## 配置令牌生成
```csharp
builder.Services.AddAuthentication().AddJwtBearer().AddCustomJwtBearer(options =>
{
options.IssuerSigningKey = issuerSigningKey;
options.SecurityAlgorithm = SecurityAlgorithms.HmacSha256;
});
```