We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d12e0 commit a1378e1Copy full SHA for a1378e1
roles/lib/files/FWO.Middleware.Client/JwtReader.cs
@@ -60,7 +60,7 @@ public async Task<bool> Validate()
60
try
61
{
62
TokenValidationParameters validationParameters = new TokenValidationParameters
63
- {
+ {
64
RequireExpirationTime = true,
65
RequireSignedTokens = true,
66
ValidateLifetime = true,
@@ -69,7 +69,6 @@ public async Task<bool> Validate()
69
ValidateIssuer = true,
70
ValidIssuer = FWO.Basics.JwtConstants.Issuer,
71
IssuerSigningKey = jwtPublicKey,
72
-
73
};
74
75
JsonWebTokenHandler handler = new ();
0 commit comments