Comments
-
Dropbox webhook notifications only tell you when something has changed. They don't include information about what exactly has changed. You can find an example of what a webhook notification body looks like in the webhook documentation under "Receiving notifications":…
-
It looks like you may be attempting to use the "Dropbox-API-Select-Admin" header to delete something from a shared folder in a member's private folder. The /2/files/delete_v2 endpoint only supports the "Team Admin" mode for Dropbox-API-Select-Admin though, meaning it "can access content of team folders but not team…
-
Dropbox doesn't currently offer an API for the Dropbox Transfer feature, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
These 'account_id', 'uid', 'access_token', and 'token_type' values are returned by the Dropbox /oauth2/token endpoint. You would call the the Dropbox /oauth2/token endpoint if you're using the Dropbox OAuth 2 "code" flow. You can find information on what your request should look like in the documentation for the…
-
Thanks for the note! We've received your ticket and will follow up with you there.
-
To retrieve an OAuth 2 access token for the user, you should use the Dropbox OAuth 2 app authorization flow. You can find more information on that in the documentation. By the way, we do offer an official Dropbox API v2 Java SDK. We recommend using that if possible. It implements most of the authorization flow for you,…
-
I see you're trying to call the /2/auth/token/from_oauth1 endpoint. This endpoint is only meant for use if you already have pre-existing OAuth 1 access tokens. OAuth 1 access tokens were a feature of an old version of the Dropbox API, API v1. If you're just starting now, you wouldn't have any, and should just use OAuth 2…
-
Thanks for the report! I'll ask the team to fix the error reporting in that case too.
-
Based on the error message you shared, you're not getting exactly the same issue as the thread you linked to. It looks like you can still make this work using the modification mentioned there though, i.e., by changing your link to use 'dl.dropboxusercontent.com' initially, like this:…
-
Thanks for following up. There doesn't appear to be anything wrong in the code you posted, so there are a few things to check next: * is there anything on your network connection, e.g., proxy, firewall, anti-virus, or other security software, that may be interfering with the connection? * how big is the file that you're…
-
No, unfortunately the Dropbox API doesn't currently offer a way to get an access token with restricted scopes/permissions like this, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
@"Andrey_Golub1" As Здравко mentioned, you can get the information about who last modified a file from the FileMetadata.sharing_info.modified_by information returned by /2/files/get_metadata (or elsewhere, such as /2/files/list_folder[/continue]). The Dropbox API doesn't return information about which user originally…
-
For anyone else watching this thread: this issue should now be fixed.
-
The Dropbox API doesn't offer an interface for retrieving these document properties, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. That being the case, you'd need to download the file and parse them out in your app's code.
-
Can you clarify what you mean when you say "is get stuck in dbx.Files,DownloadAsync Method"? Are you getting any error or output?
-
@"IOT_Developer" Thanks! We'll look into it and follow up with you on your ticket shortly.
-
@"litemotiv" Thanks for following up. Yes, you'll need to call /2/files/get_metadata once per file for which you want to retrieve the media info. This is the recommended approach now. Depending on your use case, this may unfortunately increase the overall latency. I'll be sure to pass this along as feedback.
-
@"IOT_Developer" Thanks! I'm not currently aware of anything that should have caused such an increase, and I also currently can't seem to reproduce that increase myself, nor have we received other reports of this, so we'll need to investigate this further. Would you be able to open an API ticket with additional details,…
-
Thanks for the report! I'll follow up with you privately as it will be helpful to get a few more pieces of information from you to help us investigate this.
-
This issue with calling get_shared_link_file with a password is now fixed and should be working properly. Apologies for any inconvenience this may have caused, and thanks again for bringing this to our attention.
-
This issue with calling /2/sharing/get_shared_link_file with a password is now fixed and should be working properly. Apologies for any inconvenience this may have caused, and thanks again for bringing this to our attention.
-
This issue with calling /2/sharing/get_shared_link_file with a password is now fixed and should be working properly. Apologies for any inconvenience this may have caused, and thanks again for bringing this to our attention.
-
This issue with calling /2/sharing/get_shared_link_file with a password is now fixed and should be working properly. Apologies for any inconvenience this may have caused, and thanks again for bringing this to our attention.
-
@"litemotiv" The 'media_info' functionality on /2/files/list_folder was deprecated earlier this year, and retired this month. You can find more information in the documentation for the 'include_media_info' parameter for /2/files/list_folder. If your app(s) need access to the media information for files like this, please…
-
@"smr_software" The Dropbox filesUpload method will just upload the data supplied to it, so to follow on what Здравко said, it sounds like the issue is occurring before the Dropbox call. It may have to do with whatever format or encoding the data is in when you get it. Since this isn't exactly about the Dropbox API itself,…
-
@"IOT_Developer" Thanks for the report! I'll be happy to look into this for you, but I can't make any promises. First, for reference, can you let me know: * Is the issue again with the length of the link returned by /2/files/get_temporary_link? * When did you start seeing this issue again? * What length were you getting…
-
It sounds like you're currently using a "Dropbox Business API" app. Access tokens for Dropbox Business API apps always allow access to the entire Business team, and can only be retrieved by team admins. If you instead want access tokens that can only access the accounts of specific members, you'll need to instead register…
-
Thanks for the additional details! I'm able to reproduce this now. It looks like this can happen when you specify a "to_path" value of a ID for a file with an extra path component appended on ("/new" in your case). Since the file ID is already for a file, you can't add an extra path component. (Files can only be nested…
-
@"a. asustor" Thanks for the report! Please try again now.
-
- No, the Dropbox API itself doesn't limit the speed like this, but there are a number of different factors that will affect the speed you see. For instance, your connection speed to Dropbox depends on the routing you get between your ISP and our servers, and may be slower than your ISP's rated speeds. Sometimes resetting…