Thanks for opening.
I'm looking to use the Java SDK for Dropbox API V2 with SSL with some clients, and I've realised recently I've not been connecting with SSL.
How could I modify the code below to allow me to connect via SSL?
public void Connect() throws DbxException {
System.out.println("his.details.getACCESS_TOKEN() = " + this.details.getACCESS_TOKEN());
// Create Dropbox client
config = new DbxRequestConfig(this.details.getClientIdentifier());
client = new DbxClientV2(config, this.details.getACCESS_TOKEN());
FullAccount account = client.users().getCurrentAccount();
System.out.println(account.getName().getDisplayName());
}
I've not been able to find any examples of this being done, but I've noticed SSLConfig but with no examples of it being used. I thought SSL would be promoted to mitigate any security concerns.
Thanks 