Hello !!
I use Dropbox API . I generate client to call method but after some time period it expire. Every time go to APP and generate Access token it not possible. It is possible for testing purpose. But when code go for production How to change Access Token. There is any code or method that generate Access Token dynamically. I use this code to make client
DbxRequestConfig config = DbxRequestConfig.newBuilder("dropbox/java-tutorial").build();
DbxClientV2 client = new DbxClientV2(config, accessToken);In this I generate Access token after sometime and pass the access token value .
If their any other way to make client that generate Access Token dynamically please guide me
Thank You !!