Comments
-
@"Здравко" Thanks for writing this up! I can't make any promises myself, but I'll send this along to the team.
-
@"cantonfoshan" As Здравко noted, this seems to be working, so additional details would be helpful. I see you did also open a support ticket with some details for this though, so we'll look into it and follow up with you there.
-
The Dropbox API search functionality does not support searching by a wildcard like this, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. I can't speak to if/why that query might have done what you wanted before, but this was not officially supported or documented.
-
1) The API response is correct. In a non-updated team space configuration, as far as how the API works, the folders in the team space are technically shared folders not team folders. 2) No, unfortunately the API doesn't offer a way to filter out the member folders, but I'll pass this along as a feature request. I can't…
-
[Cross-linking for reference: https://stackoverflow.com/questions/78287104/how-to-request-a-synchronization-of-a-file-from-files-app ] Thanks for the post. I can't offer help with this directly since it's not part of the Dropbox API/SDK, but if you write in to developer support we can try to get you to the right department…
-
@"sarshavs" As Здравко pointed out, if you use /2/files/list_folder/get_latest_cursor, the returned cursor will only allow you to get entries from after the point in time when you made that call, up until when you make the /2/files/list_folder/continue call. If you instead want to get all entries, you would need to start…
-
It looks like this is a duplicate, so I'll close this thread in favor of your other one.
-
The Dropbox API still does not offer the ability to make a new version of a file by just appending data to an existing file. The Dropbox API upload session functionality does offer the ability to upload files by sending multiple requests, each with just a portion of the total data, but that still requires the app to upload…
-
Yes, if the official Dropbox Android app is installed and you're using the official Dropbox SDK in your app, the Dropbox app authorization flow will be processed through the official Dropbox Android app. If the official Dropbox Android app is not installed, the browser will be used instead.
-
@"rodri042" No, the Dropbox API does not offer a way to do so.
-
You can see what the result/error means by referring to the documentation, and clicking through the nested types as needed. For instance, from the /2/files/move_batch_v2 documentation, this 'failure/relocation_error/to/conflict/folder' for the entry in the complete.entries means that the entry was not moved because there's…
-
To download a file using the JavaScript SDK, you would use the filesDownload method. There's an example of using a content download method like this in TypeScript with this SDK here. That example happens to use sharingGetSharedLinkFile instead of filesDownload, but they work the same way to access the returned data; you…
-
By default, API calls to the Dropbox API operate in the "member folder" of the connected account ("Student", in your case), not the "team space". That means that by default, the contents of the team space will not be found. You can configure API calls to operate in the "team space" instead though, in order to interact with…
-
I can't offer insight on what your ISP(s) may or may not be doing, but if you have any questions regarding that you may want to reach out to them. In any case, there would be other factors out of our control impacting the actual connection speed you see in practice anyway. I also notice that in the log you shared the…
-
Thanks for the feedback! Unfortunately I can neither look up nor modify your connection speed based on the file IDs (or other identifiers) though.
-
The Dropbox API does have a general rate limiting system that applies to all account types, but we don't have specific rate numbers documented for that, and we cannot increase the limits for any particular app, user, or team. Apps should be written to handle these rate limit responses automatically. In any case that you…
-
The 'limit' parameter is used to set an approximate maximum number of entries to return per result page, per the documentation you mentioned. Due to various implementation details, the server may not return that many in every result, and so the count is not expected to necessarily be the same in every result.
-
That include_mounted_folders documentation indicates that it controls whether or not to include entries under the mounted folders. So, the mounted folder (such as a shared folder) itself will still be listed, but the contents of that shared folder should not. If that's not what you're seeing, feel free to share the code…
-
The network route/performance between you and the Dropbox servers may be different than that between you and the Google servers, so that may not be a useful comparison. I can't give you a free temporary upgrade, but the connection speed is not dependent on your plan type anyway.
-
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 or retrying your connection gets you a different route and better speeds, but that is outside of our control. Some ISPs also throttle sustained connections so…
-
As Здравко said, it looks like your new post got caught in the spam filter, but it is restored there now. I'll follow up with you on that thread.
-
You don't need to configure anything on the App Console to get that page to load, even on another device. If the page isn't loading, that likely indicates some network or server issue. Does www.dropbox.com itself load on that device? What about other non-Dropbox web sites?
-
I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: * the name and version number of the platform and SDK/library you are using, if any * the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or…
-
This should be fixed now. Please let us know if you're still seeing any issues. Thanks!
-
The following all work for me: print(info.get_member_info().profile.name)print(info.get_member_info().profile.name.given_name)print(info.get_member_info().profile.name.surname)print(info.get_member_info().profile.name.display_name) Note though that the values won't be set if the account doesn't have a name set yet (e.g.,…
-
The 'profile' seen in this code/output is a TeamMemberProfile, which is based on MemberProfile, so you can access whatever of those documented fields you need there, just like you currently for do for 'team_member_id'. So, for example, just like you access ...'.profile.team_member_id', you can access…
-
@"Здравко" Thanks! I'll pass this along as well.
-
Thanks for confirming. For information on this regarding how it affects the API, please refer to the following resources: * https://developers.dropbox.com/dbx-team-files-guide * https://dropbox.tech/developers/api-updates-to-better-support-team-spaces
-
This media information is not available for all files/file types, but I'll pass this along as a feature request to expand support for this. I can't promise if or when that might be done though.
-
Thanks for the report! I'll have the team look into it.