Hi,
I need assisstance in Oauth2.0 usage.
After I generated token I have following properties

The moment that I do not understand is how to refresh token. Here I got ExpiredAt property that shows that this token will be expired.
Assuming that it is already expired, how I must refresh it ?
I checked provided samples of code

Will be correct if I make such verification for expiration of token

and if it expried I add this code ?
var client = new DropboxClient(Settings.Default.AccessToken, Settings.Default.RefreshToken, ApiKey, ApiSecret, config);await client.RefreshAccessToken(newScopes);var clientNew = new DropboxClient(Settings.Default.AccessToken, Settings.Default.RefreshToken, ApiKey, ApiSecret, config);
Thanks in advance