Hi,
According to this page https://developer.box.com/guides/authentication/tokens/refresh/#:~:text=A%20Refresh%20Token%20is%20valid,need%20to%20be%20re%2Dauthorized, the refresh token can be used for only once. However, when I send refresh request with the same refresh token multiple times, I get the same access token and refresh token. Also, the refresh token seems valid until the new refresh token is used. This seems not aligning with the description (please see it below). Is the statement out of date or I misunderstand it?
Thanks!
Refresh token expiration
A Refresh Token is valid for 60 days and can be used to obtain a new Access Token and Refresh Token only once. If the Access Token and Refresh Token are not refreshed within 60 days, the user will need to be re-authorized.
Every time an application uses the Refresh Token to get a new Access Token the Refresh Token is invalidated and a new Refresh Token is returned with the new Access Token.
This new Refresh Token is then again only valid for 1 use within 60 days.