Hi all,
I am using the below endpoint to get access token for authentication.
https://yourdomain.my.workfront.com/integrations/oauth2/api/v1/jwt/exchange
The body of the request has Client ID, Client Secret, and JWT (generated by pythonic code, signed with private key):
client_id={client_id_value}&client_secret={client_secret_value}&jwt_token={base64_encoded_JWT}
And, the response I get is like below:
{"access_token": "<access token>",
"expires_in": "3600"
}
So, I wanted to ask if there is a way to extend/increase this "expires_in" time for the access token I am getting?, I want this token to be valid for at least a day (24 hours) but for not it seems to be valid only for an hour. Is this even possible? If yes, how?
Any help would be appreciated, thanks to all.