Hi,
Question concerning this situation. I have XDATA Rest server with set to AccessToken
claims.Expiration := IncMinute(now, 20);
From the browser/client side I would have the opportunity to check if the token expired before run the xdata rest service function.
When I get from existing Token claim Expiration time it is local time set on the server ... but our client e.g. has different time zone. In this case should I during Token creation add extra claim e.g. like this
JWTAccessToken.Claims.SetClaimOfType<string>('TokenExpiration', DateToISO8601(JWTAccessToken.Claims.Expiration));
or I'm able to change the existing claims.Expiration to client local time?