91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
甘南县| 都匀市| 淳化县| 当阳市| 界首市| 河南省| 东平县| 新泰市| 无为县| 台前县| 徐州市| 介休市| 体育| 澄城县| 晋宁县| 道孚县| 重庆市| 萨嘎县| 翁源县| 普兰店市| 临夏市| 大新县| 藁城市| 冷水江市| 大洼县| 洪雅县| 福海县| 大安市| 施甸县| 彰化市| 山西省| 德化县| 咸宁市| 柳州市| 罗田县| 宁南县| 岑溪市| 资源县| 揭阳市| 明光市| 勃利县|