亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

JWT token在C#中的應用

c#
小樊
133
2024-08-30 22:59:22
欄目: 編程語言

JSON Web Token(JWT)是一種開放標準,用于在網絡之間安全地傳輸信息。JWT 可以用來身份驗證和授權。在 C# 中,你可以使用 JWT 來保護你的 Web API 或者其他需要安全訪問的資源。

以下是在 C# 中使用 JWT 的基本步驟:

  1. 安裝 System.IdentityModel.Tokens.Jwt 和 Microsoft.IdentityModel.Tokens 包:
dotnet add package System.IdentityModel.Tokens.Jwt
dotnet add package Microsoft.IdentityModel.Tokens
  1. 創建一個 JWT 令牌:
using System;
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims;
using System.Text;
using Microsoft.IdentityModel.Tokens;

namespace JwtExample
{
    class Program
    {
        static void Main(string[] args)
        {
            var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("your-secret-key"));
            var signinCredentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256);

            var claims = new Claim[]
            {
                new Claim(JwtRegisteredClaimNames.Sub, "user-id"),
                new Claim(JwtRegisteredClaimNames.Jti, Guid.NewGuid().ToString()),
                new Claim(ClaimTypes.Role, "admin")
            };

            var jwtToken = new JwtSecurityToken(
                issuer: "issuer",
                audience: "audience",
                claims: claims,
                expires: DateTime.UtcNow.AddMinutes(30),
                signingCredentials: signinCredentials
            );

            var tokenString = new JwtSecurityTokenHandler().WriteToken(jwtToken);
            Console.WriteLine($"Generated JWT: {tokenString}");
        }
    }
}
  1. 驗證 JWT 令牌:
using System;
using System.IdentityModel.Tokens.Jwt;
using System.Text;
using Microsoft.IdentityModel.Tokens;

namespace JwtExample
{
    class Program
    {
        static void Main(string[] args)
        {
            var tokenString = "your-jwt-token";
            var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("your-secret-key"));
            var validationParameters = new TokenValidationParameters
            {
                ValidateIssuer = true,
                ValidIssuer = "issuer",
                ValidateAudience = true,
                ValidAudience = "audience",
                ValidateIssuerSigningKey = true,
                IssuerSigningKey = key
            };

            try
            {
                var jwtTokenHandler = new JwtSecurityTokenHandler();
                var principal = jwtTokenHandler.ValidateToken(tokenString, validationParameters, out _);
                Console.WriteLine($"Token is valid. User ID: {principal.FindFirst(ClaimTypes.NameIdentifier)?.Value}");
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Token is not valid: {ex.Message}");
            }
        }
    }
}
  1. 在 ASP.NET Core 中使用 JWT 進行身份驗證和授權:

首先,安裝 Microsoft.AspNetCore.Authentication.JwtBearer 包:

dotnet add package Microsoft.AspNetCore.Authentication.JwtBearer

然后,在 Startup.cs 文件中配置 JWT 身份驗證:

using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.IdentityModel.Tokens;
using System.Text;

namespace JwtExample
{
    public class Startup
    {
        // ...

        public void ConfigureServices(IServiceCollection services)
        {
            // ...

            services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
                .AddJwtBearer(options =>
                {
                    options.RequireHttpsMetadata = false;
                    options.SaveToken = true;
                    options.TokenValidationParameters = new TokenValidationParameters
                    {
                        ValidateIssuer = true,
                        ValidIssuer = "issuer",
                        ValidateAudience = true,
                        ValidAudience = "audience",
                        ValidateIssuerSigningKey = true,
                        IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("your-secret-key"))
                    };
                });

            // ...
        }

        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            // ...

            app.UseAuthentication();
            app.UseAuthorization();

            // ...
        }
    }
}

現在,你可以在控制器中使用 [Authorize] 屬性來保護需要身份驗證的端點:

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace JwtExample.Controllers
{
    [ApiController]
    [Route("[controller]")]
    public class WeatherForecastController : ControllerBase
    {
        [HttpGet]
        [Authorize]
        public string Get()
        {
            return "Hello, authorized user!";
        }
    }
}

這就是在 C# 中使用 JWT 的基本概述。你可以根據自己的需求進行調整和擴展。

0
黄山市| 迭部县| 东乡| 灯塔市| 瓦房店市| 离岛区| 会东县| 阳东县| 措美县| 南阳市| 浑源县| 正定县| 通许县| 宜川县| 宣城市| 内江市| 义乌市| 万盛区| 砚山县| 河东区| 铜山县| 望城县| 松滋市| 桂阳县| 双桥区| 宜章县| 潜山县| 龙口市| 克东县| 肇东市| 大埔区| 石泉县| 兴国县| 淮安市| 延川县| 商城县| 柘城县| 乌兰县| 温州市| 勐海县| 乌拉特前旗|