@sujith In order to renew access token, we need refresh token. Prelogin I capture the request token from the URL and use it to log in to get the access token. Is refresh token the same as request token??
request token is received during login and used to generateSession. what is received as a result of generating session contains a refreshToken which might be used in future to refresh session that will give new access token
@archan85, A `refresh_token` is a special long-standing token for read-only requests issued selectively to exchange approved platforms and not for individual users.
Thanks
Regards
A `refresh_token` is a special long-standing token for read-only requests issued selectively to exchange approved platforms and not for individual users.
thank you for the info.
I got it working.