What does happen if I try to refresh a token which is not expired yet?
You get a new token.
As long as the refresh token is valid.
You can obtain a new access token whenever you want. It doesn’t have to have died.
Does it mean that I can use a token refreshing instead of validating it?
In theory, yes.
If I try to validate a toke, which is expired, what kind of response will I get?
{“status”:401,“message”:“invalid access token”}
Are validating requests done by GET?
As documented, yes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.