Converting Timestamp Claim to Readable Timestamp in JWT Tokens
In the JWT token, there are claims such as iat
(issued at) and exp
(expiration time). However, these values are not user-friendly and difficult to read in their current numeric format.
Here’s a sample JWT token with decoded claims:
Convert by PowerShell
To convert these numeric dates into a more readable format, you can use the following PowerShell command:
$numericDate = '1537231048' ([DateTime]('1970,1,1')).AddSeconds($numericDate)
Unix Timestamp Decoder
https://www.ruianding.com/apps/timestamp_convert/timestamp.html