-
Get "Retry-After" header in Android
I'm working on the error-handling for my new Android app right now and can't seem to figure out where to extract the "Retry-After" header if a 429 error is returned. The javadocs seem to have nothing on this. I'm using the Dropbox Android SDK 1.6.3. I am using e.error in my catch(DropboxServerException e) block to get the…
-
Manual Synchronising across more than one device
Hi, I must be missing something, I am writing an app in Xamarin C#, the basic requirement is that the app will have access to two folders on Dropbox under the App folder, the first folder is for the specific device, the second folder is a shared folder so that the same app on different devices can share the data. The first…
-
Regarding some parameter for the API
-
CORS does not seem to work for uploading files from the browser.
I'm attempting to upload files from the browser to a Dropbox folder on the user's account. The way I have it set up right now, OAuth2 is triggered using a link, which then redirects to the server when done and the server saves the token with the user's data in the database. That token is then sent back to the user whenever…
-
Generate a Temporary Token
العمل القاتل المتقدم الإبلاغ عن خلل مجاني
-
Does Chooser support multiple file selection on Android?
Hi, My app needs to be able to select multiple files in the Chooser. Is this possible? I see that it is in the Javascript API ...
-
Writing a file via API and make it always accessible publicly (like the old Public folder)
Hi, This is my scenario: I need to write a file in users' Dropbox using the Core API and make it accessible (sharable) publicly and for a longer period (than 4 hours). I need somehow a similar behavior to the old Public folder, when the public link was available forever. I have noticed that if users share something via the…
-
Access-Control-Allow-Origin Issue using Core API via DfB Team API
I'm trying to use a Dropbox API, specifically one that allows a team administrator to take action for the team member, but I keep getting an access-control-error. Here's my code: $(document.body).on('click', '.viewfolders', function() { var teamMember = $(this).closest('tr').attr('id'); //JSONinputs = {"list": "true"};…
-
Where does the JavaScript go?
I am very new at this. Where do I put the JavaScript at to make the chooser appear on my webpage? This link says to use the JavaScript. https://www.dropbox.com/developers/dropins/chooser/js#triggering
-
Core API - Java - getAccountInfo()
Hi, Why Java SDK getAccountInfo() return less info then equivalents PHP method ? JAVA - DbxClient client = new DbxClient(config, accessToken); PHP - $dbxClient = new dbx\Client($accessToken, "PHP-Example/1.0"); Thanks!
-
recovery of interrupted resumable uploads?
I have an app that uses the dropbox api to upload audio data that is recorded as it is recorded using the resumable upload api from the browser. Some of my users are experiencing browser crashes during the recording. Dropbox already has the data up to that point but because the resumable upload hasn't been sent the finish…
-
Logging to API (for folder/file listing/downloading) with least number of credentials?
I am trying to make an option for every user, to log to his Dropbox via my website (API), and there his files will be listed. After that he can do other stuff which are not important for this question. So I need the smallest number of user's dbx login info. One or two would be perfect. Thanks.
-
Database storage using Dropbox
With the recent deprecation of Datastore API & Datastore SDK, is there any other way to store my database structure and retrieve the information when passing a request/query?
-
Connection timeout when downloading file
Good Morning, I got the SocketTimeoutException while I am trying to get file from dropbox account: The code works normally on my local PC, but throws exception on hosting company's server Do I need to do any firewall configure before I can download file from core API? com.dropbox.core.DbxException$NetworkIO:…
-
Chunk upload of expanding file on iOS
I'm trying to use chunked uploads to "stream" a video file while it is recording. I delay about 5 seconds after recording starts to start the upload, to try to make sure the upload never catches up to the end of file until after video recording ends. If I stop recording before the upload starts, it works fine. However, if…
-
Dropbox authentication without copy pasting the access token manually in Java?
Hello, I read the Java Core API tutorial and I found 2 things missing in it. One was how to set a redirect URL for the request, such a way that when the request is completed, the user is redirected back and getting the access token without manually copy pasting. Copy pasting is just not applicable in real world…