We use Dropbox API as follows
https://api.dropboxapi.com/oauth2/token
"grant_type" => "authorization_code",
"code" => code,
"redirect_uri" => redirect_uri,
We receive access_token, but after few hours they expire and user again has to go through Authorizaion process.
We read about refresh token. How can refresh tokens be used to retrieve short live token so that user does not have to go through authorization process. We use rudy SDK. It would be great if you can provide some sample code to use refresh token