I am using dropbox api in my android app and i was using Access Token to connect to my dropbox and it was working well for 2 years but now i can not make a connection with dropbox. Below is my code
DbxRequestConfig config = new DbxRequestConfig("dropbox/TestAppBurk");
client = new DbxClientV2(config, "AccessToken");
FullAccount account = null;
try {
account = client.users().getCurrentAccount();
} catch (DbxException e) {
e.printStackTrace();
}
I am getting exception in the try catch. The exception is
"dropbox javax.net.ssl.SSLHandshakeException: Handshake failed"