From aa91837c556ec7795bc79795db2a9691df05c7db Mon Sep 17 00:00:00 2001 From: jianweie code Date: Tue, 30 Jul 2024 14:29:21 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4JwtConfig=E7=9A=84=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0=EF=BC=8C=E6=8F=90=E7=A4=BA=E8=A6=8132=E4=BD=8D?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CoreCms.Net.Web.Admin/appsettings.json | 2 +- CoreCms.Net.Web.WebApi/appsettings.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CoreCms.Net.Web.Admin/appsettings.json b/CoreCms.Net.Web.Admin/appsettings.json index c79588ef..710538f4 100644 --- a/CoreCms.Net.Web.Admin/appsettings.json +++ b/CoreCms.Net.Web.Admin/appsettings.json @@ -33,7 +33,7 @@ }, //jwt授权认证的一些设置 "JwtConfig": { - "SecretKey": "", //请自主填写一段英文数字等作为token令牌,16位+ + "SecretKey": "", //请自主填写一段英文数字等作为token令牌,注意是要32位。 "Issuer": "", //颁发者身份标识,如CoreShop.Professional "Audience": "coreshop" //期望的接收人,如core,cms等 }, diff --git a/CoreCms.Net.Web.WebApi/appsettings.json b/CoreCms.Net.Web.WebApi/appsettings.json index c4e26eba..a7aefcac 100644 --- a/CoreCms.Net.Web.WebApi/appsettings.json +++ b/CoreCms.Net.Web.WebApi/appsettings.json @@ -37,7 +37,7 @@ }, //jwt授权认证的一些设置 "JwtConfig": { - "SecretKey": "", //请自主填写一段英文数字等作为token令牌,16位+ + "SecretKey": "", //请自主填写一段英文数字等作为token令牌,注意是要32位。 "Issuer": "", //颁发者身份标识,如CoreShop.Professional "Audience": "coreshop" //期望的接收人,如core,cms等 },