Comments
-
I just tried the API call code you shared here, and it successfully saved a full 52KB .png file to my account. The code seems fine, except for the double '/' in the path parameter, though that shouldn't matter. What data is in the 860 byte file that gets saved for you? Try downloading and opening it. E.g., it might contain…
-
Unfortunately I don't know why the system was built that way, but I've sent your feedback along to the team as a request to change it.
-
What specifically isn't working? If you're running in to any trouble, please share the relevant code and error/output. The Dropbox API offers an endpoint for reading file content. This requires one API call per file, so if you want to access the file content for all of the files in a folder, you'll need to loop through the…
-
This isn't related to API v1 (the .NET SDK only uses API v2 to begin with). The API .NET SDK should work with .NET Standard 1.1+, though it may require some extra configuration. If you are using project.json, you need to add portable-net45+win8 to imports under you frameworks section. If you are using .csproj file, you…
-
Can you share the full error message and stack trace for the crash? Thanks in advance!
-
Thanks for writing this up! We appreciate the feedback. I can confirm that this is the expected behavior for the API. The Dropbox API does not enable access to to restricted files to third party apps. I'll pass this feedback along to the team. If you have files that appear to be incorrectly marked as restricted though,…
-
The app analytics do not explicitly exclude any set of users. We are aware that our servers are inaccessible from China. This issue is outside of our control, so unfortunately we’re unable to offer advice or assistance.
-
To get started, we recommend using one of the official SDKs, if one is available for your platform: https://www.dropbox.com/developers/documentation Each one comes with documentation and a getting started guide. Alternatively, you can use a third party library: https://www.dropbox.com/developers/documentation/communitysdks…
-
The API v2 Java SDK doesn't offer progress listeners, but I'll be sure to pass this along as a feature request. I can't promise if or when this may be added to the SDK though. The DNS issue wouldn't be specific to API v1. API v2 also uses the 'content.dropboxapi.com' hostname, so your system needs to be able to query the…
-
It looks like we don't have a limit documented for deleteBatch. I'll ask the team to check on this.
-
If the user's Pro plan has ended, the information returned by /2/users/get_current_account should contain the new value. If that doesn't seem to be the case for you, please share the output of /2/users/get_current_account as well as a screenshot showing the Pro plan has ended, e.g., from the web site.
-
I'm not sure I understand your question. It looks like you already have the Dropbox link at this point in the code though. If you need general HTML/JavaScript help, I'm afraid I can't be of use, as that wouldn't be about Dropbox itself. You may want to post on a general help forum, such as StackOverflow.
-
Assuming you're using the API v2 Java SDK, you should just throw away your client object. The API v2 Java SDK doesn't have the same "session" concept as the v1 SDK did. The unlink method in the v1 SDK didn't revoke the token on the server, but if you do want to explicitly revoke the token on the server using the API v2…
-
In API v2, you can find the owner's ID in the response from /2/sharing/list_folder_members[/continue]: https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folder_members https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folder_members-continue (There are…
-
This feature is available to Pro and Business plans. You can check the plan for the linked account by calling /2/users/get_current_account and checking the account_type in the response: https://www.dropbox.com/developers/documentation/http/documentation#users-get_current_account Users can compare the different plans and…
-
Webhook notifications should be getting delivered now.
-
Hi Jesper, yes, there's a webhooks disruption right now. We're working on it.
-
I'll make a note to follow up on this thread if/when I have an update for you.
-
Thanks for the post! I can't make any promises, but I'm sending this feature request along to the team.
-
The listFolder response is paged, so a single response isn't guaranteed to return all of the entries in the folder. You need to check the hasMore value and call back to listFolderContinue if it is true. There's more information on this in the documentation for listFolder:…
-
The domain for the URL of the page you host the Saver needs to exactly match one of your pre-registered Chooser/Saver domains. (Make sure you don't register an "OAuth 2 redirect URI", as that's not for the Chooser/Saver.) So, for example, register "localhost" and then access your page from http://localhost (plus whatever…
-
The error message for the NetworkIOException you posted does indicate a DNS issue. The content.dropboxapi.com hostname is resolving correctly though, so it does seem to be intermittent DNS issues on your side. Regarding the incomplete download, your code looks fine. I just tried it with a 250 MB file and it's working for…
-
Are you trying to run the Saver from a file:// URL by any chance? That can result in that error. When using the Chooser or Saver, you'll need to run it from a server, so that Dropbox can verify the domain. (That is, since you need to pre-register the domains you'll user your Chooser or Saver on via the App Console:…
-
Thanks for following up. We'll look into it.
-
Thanks for the report! We'll look into why this build is failing in the first place.
-
Whatever you're comfortable with is fine by us. If you'd prefer to share it privately, you can open an API ticket here: https://www.dropbox.com/developers/contact
-
Are you getting any other errors? Do you have a sample page available where we can see this issue occurring?
-
This seems to be working for me. Are you loading the script before you call the `new Dropbox` line?
-
If you're using the Dropbox API v2 Java SDK on Android, you can find a sample for downloading a file here: https://github.com/dropbox/dropbox-sdk-java/blob/7ecc15cf0f51d6ae2ba5cdb334aac2c2f3474b87/examples/android/src/main/java/com/dropbox/core/examples/android/DownloadFileTask.java And for uploading a file here:…
-
@"Serandel" I don't have a solution to offer for this right now unfortunately. I've sent your feedback along to the team.