I am generating access_token using Service Credentials from AEMaaCS Developer Console.
I am successfully able to get the access_token using Service Credentials by generating the JWT token a below:
{
token_type: 'bearer',
access_token: 'accessTokenHere',
expires_in: 86399998
}
Question: What does expires_in: 86399998 signify? Is it time in milliseconds or something else as I couldn't find this in documentation anywhere?
Thanks!