Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
This is painful...
The Java examples rely on an auth file created via the Authorization example. Which in turn requires building this code, and running a web browser...
String authorizeUrl = webAuth.authorize(webAuthRequest); System.out.println("1. Go to " + authorizeUrl); System.out.println("2. Click \"Allow\" (you might have to log in first)."); System.out.println("3. Copy the authorization code."); System.out.print("Enter the authorization code here: ");
Now, I can get an auth code for me from DropBox directly, but the DbxAuthInfo structure also requires a non-NULL host. And has no documentation about that. This example doesn't have it either; the user and secret are submitted and the auth code retrieved.
From https://www.dropbox.com/developers/apps/info/..., how do I get the host?
Apologies for the confusion. The DbxHost should identify the Dropbox API servers, but you generally don't need to actually use any of that. You can default to the standard hosts.
For example, you can just use this constructor to make a DbxAppInfo without specifying host.
And outside of the structure of the examples, you really only need the access token, e.g., as acquired here. You can store and re-use that for future calls.
You can use that to make a DbxClientV2 without specifying host using this constructor.
(For reference though, the default DbxHost is DbxHost.DEFAULT.)
Well that was challenging. That worked but it took a while to realize it. Even though I'd removed the old Dropbox and Jackson (?) JARs from my libraries list, the Jackson one was still in the /lib folder and therefore was apparently being found before the newer Jackson-core (which was also there), resulting in java.lang.NoSuchFieldError: DEFAULT java.lang.reflect.InvocationTargetException and so on.
The way we work is changing. Share and discover new ways to work smarter with Dropbox in our community.
Sound good? Let's get started.Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on Twitter or Facebook.
For more info on available support options, see this article.
If you found the answer to your question, please 'like' the post to say thanks to the user!