Comments
-
It sounds like you'd be interested in using the Dropbox Saver. You can find the full documentation and instructions for using that here: https://www.dropbox.com/developers/saver If that's not working for you, I'll be happy to help, but I'll need some more information. In that case, please reply with: - the full text of the…
-
This should be fixed now. Please let us know if you're still seeing any issues.
-
Thanks for the report. We're working on it. For reference though, can you share the error message you're getting?
-
Thanks for the post! I can't point you at any other frames in particular, but for reference on the Dropbox side of things, there are currently two different file permissions API apps can use, "Full Dropbox" and "App folder". The first offers full access to the entire Dropbox, and the second offers access to only one…
-
@"simon_schva" This error is occurring with pip itself, and not the Dropbox library, so I'm afraid we can't offer help for this in particular. (It looks like it may be failing when trying to SSH to an address on your local network.)
-
Note that this limit is not per-folder, only per-upload batch. You can upload any number of files to a single folder, but you need to do so in batches of 1000 files each maximum.
-
There is a limit of 1000 files per upload batch. (The batchUploadFiles method is implemented using uploadSessionFinishBatch which itself has the 1000 file limit. It's documented for uploadSessionFinishBatch, but I'll ask the team to add it to the documentation for batchUploadFiles as well.)
-
@"sthigale" : 1. Dropbox API access tokens don't expire, but they can be revoked by the user or app at any time. 2. API v1 and API v2 both support OAuth 2 access tokens. The access token itself doesn't determine which API you are using. If you are using API v1, you will need to migrate to API v2. 3. No, generating a new…
-
@"sthigale" There should be a warning banner at the top of that page indicating that API v1 is deprecated with a link to more information. That is showing up properly for me. Is it not showing for you?
-
Note that when uploading a file, the path you supply should be the entire desired path for the uploaded file, including the file name. I.e., you shouldn't just specify the root path. For example, to upload a file named "myfile.txt" to the root, your dest_path should be "/myfile.txt". Or, to upload it into a "Documents"…
-
The API doesn't offer a batch download call unfortunately, so you will need to loop through and call to download each file.
-
We don't have any samples for Power BI in particular unfortunately, but we'll be happy to help with any issues you run in to. If you've starting writing code and are running in to any problems, please share the relevant code and the output you're getting and we'll take a look. If you haven't started yet, you can find all…
-
What response are you getting from the API though? You need to check the API response to see if the call succeeded or not. Also, another thing I notice is that you're sending your parameters in the 'Dropbox-API-Arg' header, but /2/files/create_folder_v2 is an RPC style endpoint, so your parameters should be sent as JSON in…
-
Thanks! This is very helpful. I'm able to reproduce this now. We're looking into it. We have a rough idea of what's occurring, though not exactly why it's occurring yet. One thing that may be relevant though is that for some calls, you're using `setProgressBlock` and checking `if (totalBytesUploaded ==…
-
Hi Denne, Sanchez is correct, there isn't a way to get a general shared link like this, but I'll pass this along as a feature request.
-
Thanks! Issues like this can be expected with IE 8, as the Dropbox site doesn't support it. Having users upgrade their browser is the right solution in this case. And no, unfortunately I don't have an example like the blog post you linked to for doing the same with the default browser, but I'll send this along as a request…
-
I just followed your instructions and was able to run your supplied code, but I didn't get either of these error messages. There must be some other factor, so can you perhaps plug it in to a sample project that reproduces the issues for you and share that? Also, in case it matters, what version of Xcode are you using?
-
Thanks! That's very helpful. We'll look into it.
-
What version(s) of Internet Explorer are driving the WebBrowser when you see this? By the way, we now recommend using the system's default browser, in order to support users using the Google Sign In flow to sign in to Dropbox, under Google's new policy disallowing web views for their authorization flow (…
-
Hi Murali, this means that the IP address associated with user's web session changed. The equivalent event type in the API v2 event log is 'device_change_ip_web'.
-
Hi Patrik, thanks for the detailed post. Your description of the current state of the revisions functionality in API v2 is accurate. I'm sending this along to the team to see if we can improve this in API v2 in the future, but I can't make any promises or offer a timeline.
-
How long each call takes, as well as how long it takes to list everything, will vary from account to account, e.g., based on the number of files/activity, so I can't offer a guarantee on how much time it would take. Each call to a ListFolderAsync or ListFolderContinueAsync method makes one call to the Dropbox API, with…
-
@"aissa" Ce sujet concerne les développeurs qui écrivent du code pour interagir par programme avec l'application Android Dropbox. Si vous avez besoin d'un support utilisateur pour Dropbox, ouvrez un nouveau fil ou un support de contact. --- Veuillez excuser nos traductions. Nos traductions ont été créées à l'aide d'un…
-
Thanks for the report! It looks like there's a good amount of code here, and I won't be able to run it, since it contains things from your app, like `WCPURLHelper`. Can you isolate just the portion(s) of Dropbox related code that results in these issues so we can look into it? We'd first need to be able to reproduce the…
-
It sounds like you're having trouble importing the Android support library, as opposed to Dropbox itself. I can't offer much help with that, but there's a post about it here: https://stackoverflow.com/questions/30803405/cannot-resolve-symbol-appcompatactivity-support-v7-libraries-arent-recognized By the way, it looks like…
-
Once you have a cursor, e.g., from a previous call to listFolder or listFolderContinue, you can later call back to listFolderContinue, passing in that cursot value, to get information on only what has changed. There's a basic example here. That example is mainly for paging through current results, but it works the same way…
-
Thanks! We'll look into it.
-
That seems to be the POST to your own site. Can you share the information I requested for the Dropbox API call itself? Thanks in advance!
-
Thanks for the report. To help us look into this, please share: - the full error output - the relevant cursor(s) - the affected user IDs Thanks in advance!
-
[Cross-linking for reference: https://stackoverflow.com/questions/45443818/dropbox-v2-api-for-android-has-no-error-code-for-space-full ] v2.0.1 is relatively old, and there have been a number of bug fixes since then, so please update to the latest version and let me know if you're still seeing this. The latest version is…