Comments
-
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.
-
It looks like you're using this constructor, where you provide the DbxRequestConfig and an access token String. That is fine and should work. To confirm, I tried this condensed version of your code, with the latest v6.1.0 of the Dropbox Java SDK: DbxRequestConfig config =…
-
Dropbox doesn't offer resources for Next.js in particular, but we do offer an API you can use for listing, uploading, and downloading files, among other operations, from any platform that can make HTTPS requests. You can find everything you need to get started with the Dropbox API, including documentation, tutorials, and…
-
1) Any given team may or may not actually have additional folders created at any particular location at any given time, so I do not recommend making assumptions about the existence of items. Apps should use the API to check to see if particular items exist or not. 2) Thanks for the note. Attempting to use the log may be…
-
@"hhting" As Здравко mentioned, look under TeamFolderArchiveJobStatus to see the description of the failed job status. Specifically, be sure to click on TeamFolderArchiveError, and so on, to expand the documentation for each nested type. That describes the structure of that type, but I'll ask the team to add an example of…
-
The Dropbox API does offer an API that can be used for uploading and download files, and as Здравко said, use of the API itself is free; users can choose to pay for different plans. Note that the API doesn't offer a way to upload new versions of a file just with a shared link though. Check out the Sharing Guide for…
-
1) Yes, for the non-updated team space configuration, /2/team/team_folder/list would only return the one team workspace team folder, and that folder contains everything else. 2) While there may be some events related to the migration, I don't believe we guarantee any particular event to use for programmatically identifying…
-
Check out the sample here for an example of how to check for and work with the different metadata types in the Java SDK.
-
@"shripaldalal1" Please check the search functionality again now. If you're still seeing the issue, please open an API ticket here while signed in to the specific account that is seeing the issue, and share the following information: * an exact query that currently isn't working as expected * the full results you're…
-
@"mikechiu" I see Здравко already helped out with this, but to confirm a few things: By default, when not using the "Dropbox-API-Path-Root" header, the root will default to the home folder. Any time you want to use a different root, you will need to set that header. Refer to the Team Files Guide for more information. The…
-
First, to clarify, that post requests that app developers update their apps by January 31, 2024 if needed, but it does not indicate that all teams would be updated then. 1) That's correct, not all teams have been migrated yet. I don't have a specific date to share for when all teams will be migrated. 2) To check if any…
-
Thanks for the report! I'll ask the team to look into this and update it accordingly.
-
That error message isn't coming from Dropbox itself, so we can't offer too much help with that unfortunately. It seems to indicate that there was an issue with the SSL/TLS connection your app is attempting. You may need to reach out to your system/network admin for help troubleshooting your network connection.
-
Just to make sure we advise accordingly, can you clarify what update you're referring to? Thanks in advance!
-
@"ssergio" Здравко is correct; the Dropbox API does not offer a way to save entire folders from shared links into an account, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. For reference, for information on using the 'dl' and 'raw' URL parameters when directly…
-
@"programmer" Здравко is correct; the getUsers method will only give you the members. To get the invitees, you'd need to call getInvitees.
-
No, MembersGetInfoV2Result is not itself a list, but its members_info field is a list containing the respective result for each user selector you specified in the call. For example: MEMBER_EMAIL = "something@example.com"user_selector = dropbox.team.UserSelectorArg.email(MEMBER_EMAIL)users_to_query = [user_selector] # this…
-
You can get the team member ID (from the team_member_id field) for any particular member from a number of different ways using the API, generally anywhere that the API returns team member information. For example, you can get the information about any particular team member, for instance by supplying their email address,…
-
I see you've actually posted from two different accounts. You use your Dropbox account to access the forum, so it looks like you have two different Dropbox accounts, and used different ones to sign in and post your two forum comments so far. That would explain why you had to set the username again. Also, since it looks…