In this example, the user logs into the web application. If the user was previously registered, browser sends the JWT token issued by the server earlier. The JWT token payloads contains some standart claim fields. After decrypting the token, received from the user, we have the following payload:
{
"iss": "https://example.com",
"sub": "42",
"exp": 100200,
"iat": 1664140100,
}
Calculate when a token will expire (Enter the time in UNIX timestamp format)?