Hi
I'm receiving the following response when I try to refresh some short lived tokens:
{"message":"Bad Request","errors":[{"resource":"RefreshToken","field":"refresh_token","code":"invalid"}]}
All my tests are working well. Most users has no issues and the tokens are refreshed without problems except some random users (didn't detect any pattern).
I use the Strava webhooks, so if an user does not add any new activity in 2 weeks, the tokens will not be refreshed until the new activity received.
This is my question: the refresh token has its own expiration? Must I refresh
by hand the tokens of my users before other time limit? I know I must refresh the access token after 6 ours calling to
https://www.strava.com/api/v3/oauth/token with the
last refresh token for the user but I checked that a refresh call with a 10-day-old user refresh token doesnt works, giving me the specified error.
Thanks
Thanks