I'm running one of the Dropbox samples and getting very slow (>30 seconds) response on a call to getCurrentAccount().
The code looks like this:
...
DbxRequestConfig config = new DbxRequestConfig(APPNAME);
client = new DbxClientV2(config, ACCESS_TOKEN);
FullAccount account = client.users().getCurrentAccount();
...
In our tests, the call to "client.users().getCurrentAccount()" runs for about 30 seconds before returning. This is running against the dropbox-core-sdk-3.1.5 JAR file.
Any idea why getCurrentAccount() would be so slow?