Comments
-
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…
-
@"jay-8" Dropbox no longer provides error logs like that for the API. We recommend debugging issues like this locally. Anyway, we can't provide support for third party platforms themselves, so I can't say what may be different about your different environments, but as Здравко said, every Dropbox API call should either…
-
@"JohnAdam_CUNY" It seems like your 'dbx_team' variable is probably your 'DropboxTeam' instance. As Здравко said though, you should use the provided dropbox.team.UserSelectorArg (not on a DropboxTeam instance) to access that. For example, there's dropbox.team.UserSelectorArg.email. And as they mentioned, once you have one…
-
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…
-
Thanks for following up. That particular library is made by a third party, so we can't offer help with the library itself. Also, the page you linked to includes a number of example code snippets, so it's not clear what exactly you're running. Can you share the actual request(s)/response(s) for the Dropbox API itself that…
-
@"aifxw" It's not clear if the issue you're seeing is necessarily exactly the same as the issue reported in the thread you originally posted in, so I've moved your messages to its own thread in case we need to look into this further for you. The original issue should be resolved now, so can you confirm if you're still…
-
@"lorenzomilesi" This should be working again now. Please try again and let us know if you're still seeing any issues. Thanks!
-
Thanks, that's helpful. I'll ask the team to look into it. I'll reply here with any news.
-
Server-side errors like this can be transient; can you try again to check if you're still seeing this issue? If you are still seeing this, can you try reloading the page several times with the browser developer tools open, and copy and share several (say 5-10) 'X-Dropbox-Request-Id' response header values from the network…
-
@"cristpol95" Здравко is correct; the Dropbox API search functionality does not support regex or wildcard functionality, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
The Dropbox API doesn't offer a way to check if team members have two-step verification enabled, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. For reference though, team admins can set their team to require that members use two-step verification. You can find…
-
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…
-
Archiving a team folder removes it from all members' folder structures, and accordingly further results from the list_folder functionality would then reflect that, but I don't have a more specific guarantee or documentation on the exact timing of when that occurs in that process.