Comments
-
@"southpaw3229" Здравко is correct; you need to click "Submit" on the "Permissions" tab (not the "Branding" tab) to save the changes. Also, make sure you've dismissed the cookie consent banner at the bottom of the screen, as it can obscure those buttons.
-
Thanks for following up and clarifying. The behavior of "use that cursor to call /groups/members/list/continue, it returns the same list even if there hasn't been any changes" doesn't sound like the expected behavior. It looks like that's a bug on these /2/team/groups/list/continue and /2/team/groups/members/list/continue…
-
@"Takashi Homma" Yes, additionally note that some teams currently have a team space, and some don't. Make sure to read through the Team Files Guide to understand how the different configurations work. Also, note that there may be multiple reasons an endpoint would return a 409, so always check the error in the response…
-
Unfortunately I don't have any specific guidance to offer for if/how it might be possible to build that directly, as that is not officially documented or supported. (And the details normally handled automatically by the script may be subject to change without notice.)
-
Thanks for the feedback! Dropbox doesn't offer an option or alternative like this, such as using just an iframe directly, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
This is the expected behavior for /2/sharing/list_file_members/batch; groups are not returned by this endpoint. Refer to the /2/sharing/list_file_members/batch documentation for a note about this. To get group information, you'd need to use /2/sharing/list_file_members instead.
-
Please note that undocumented endpoints are not meant for third party use, and are subject to change without notice.
-
@"daynightdev" Здравко is correct; when you get a 429, the best practice is to retry the request, respecting the Retry-After header if given in the response, or using an exponential back-off, if not. I recommend referring to the error documentation and Error Handling Guide for more information. The Dropbox API does not…
-
@"asierdo" That's correct, the client does not need its own certificate to download files from the Dropbox API. The Dropbox API servers have certificates, and third party clients connect to those Dropbox servers.
-
To create a folder, you would use the /2/files/create_folder_v2 endpoint (or corresponding method in an SDK). That's a user-endpoint, not a team endpoint. Note that by default, API calls to the Dropbox API operate in the "member folder" of the connected account, not the "team space". That means that by default, you can…
-
If the files are in one or a few folders, you can use filesDownloadZip to download the entire folder(s) and unzip them locally, instead of downloading each file individually. Otherwise, you may want to try running several filesDownload calls at a time in parallel, if you aren't already.
-
Yes, to get information about a specific item, you would use /2/files/get_metadata.
-
Paper docs in the "Migrated Paper Docs" folder would be .paper files, which would need to be exported instead of downloaded, so files_export_to_file (or files_export) would be the right method to use. A "not_found" Dropbox API error indicates that the API call failed because there was nothing currently found at the…
-
I'm not sure I quite follow your latest post. Using team_groups_list and team_groups_list_continue is the right way to list the groups on a team, and using team_groups_members_list and team_groups_members_list_continue is the right way to list the members of a group, but "team_members_get_info_continue" isn't a Dropbox API…
-
@"cmpl2022" Здравко is correct; you should use refresh tokens for long-term access, whether for your own account or for other users. You can find more information at the following links: * https://developers.dropbox.com/oauth-guide * https://www.dropbox.com/developers/documentation/http/documentation#authorization *…
-
I'm not aware of any such plans currently, but I'll pass this along as a feature request. I can't promise if or when that might be implemented.
-
I'm not sure I fully understand all of your questions, so feel free to follow up and clarify. I've also split out your message here to a new thread so as not to bother the members of the old thread. It's not possible to get an authorization code without processing the app authorization flow. The user needs to authorize the…
-
Dropbox is no longer offering the option for creating new long-lived access tokens. Dropbox is now issuing short-lived access tokens (and optional refresh tokens) instead of long-lived access tokens. You can find more information on this migration here. Apps can still get long-term access by requesting "offline" access…
-
I see you opened multiple threads for this question. Please note that it is not necessary to open multiple threads for the same question. I'm closing this thread in favor of your other thread. I'll follow up with you there.
-
Unfortunately Dropbox doesn't offer the ability to get webhook notifications for changes to groups, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
@"Takashi Homma" No, I am not aware of a way to disable the logging.
-
We don't have the specific number documented, but alternatively you can use /2/file_properties/properties/search as-is and filter the results in your code based on the returned PropertiesSearchMatch.path field.
-
No, that functionality doesn't offer a path filter, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
When you get a 400 error like this, be sure to print out the response body, as it should contain a more specific error message indicating what the issue is. If you need help with that error, please print it out and share it. Also though, I notice that you're importing and using both 'dropbox' and 'requests', and you're…
-
@"Mgymnasts" I see Здравко already helpfully offered some guidance, but to add some more clarification, note that the access an app gets is to the particular account that authorizes the app. There are no files/folders associated with the app itself; everything exists in some account. When you as the app owner connect the…
-
@"dsoprea" There are a number of different ways to get team member IDs, such as: * like you mentioned, list the members of the team via team_members_list_v2 and team_members_list_continue_v2 * look up a specific member's information via team_members_get_info_v2 * check which team admin happened to authorize the particular…
-
For searching by file property value, use /2/file_properties/properties/search instead: https://www.dropbox.com/developers/documentation/http/documentation#file_properties-properties-search
-
@"BillyVail" Please feel free to open a new thread with the details of your issue so we can take a look and help you specifically.
-
You'll receive updates by email. If you don't receive a response soon, be sure to check your spam folder.
-
@"chemical21" Thanks for the feedback!