把项目升级到8.0之后,token一直报错
Authentication failed: IDX14100: JWT is not well formed, there are no dots (.).在program.cs中修改如下:
The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'.
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(opts =>
{
opts.UseSecurityTokenValidators = true;//加上这句
//.......其它业务
});
- 本文标题: .NET8.0中Authentication failed: IDX14100: JWT is not well formed,
- 文章分类:【.NET/Web】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.