I have seen in this link - How can we handle Callback URL redirection in FD serverless app? - #3 by Saif
It is mentioned that accesstoken would be refreshed internally in freshdesk right.
I have built an oauth app with this config
{
"client_id": "**",
"client_secret": "**",
"authorize_url": "**",
"token_url": "https://setmore.fullauth.com/o/oauth2/v1/token",
"options": {
"scope": "**",
"grant_type":"authorization_code"
},
"token_type": "account"
}
if am leaving my app for some idle time am getting error like this Response 210 “Accesstoken can’t be refreshed”
while making an client request not getting exactly how we can resolve this.
Do we have any support of refreshing the accesstoken configuration.