Comments
-
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!
-
@"dsoprea" It sounds like you're trying to identify which account uploaded a file. The 'modified_by' field you mentioned would be the right property for that. That would give you the account ID of the account that modified that file. (Note that it's the account ID of the account that last modified it though; it may be…
-
That is still accurate; Dropbox has not been updated to support adding additional app owners. Apologies I don't have better news for you!
-
@"Stenkar" Rich is correct, it sounds like your team is now using the "team space". 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, the contents of the team space will not be found, and uploads will go to the…
-
Здравко is correct, the URL parameters may vary slightly for different links for different items, and can be important for how these get embedded, so you should not be stripping these from the links. Regardless, I see your support ticket has been received so we'll review the details there and follow up with you soon.
-
Thanks for following up. I was looking at the reference to the "frame-ancestors" directive in the error message in particular which relates to if/how frame parents are allowed. It would be helpful to inspect this directly, so please do open a ticket here so you can share privately.
-
@"Inderjeetdev" The cursor field will be "Present if there are additional shared folders that have not been returned yet.". If the cursor is not returned, that means that there are no more shared folders to return, and so it is not necessary to call /2/sharing/list_folders/continue. Also, note that the…
-
The path fields are "optional", meaning they are not guaranteed to be set. The path fields will not be set if the file is not mounted in the connected account. In your screenshot, the path fields are not set, meaning they are not mounted in the account for the access token you're using, and so there is no path value to…
-
The exact number of entries returned per page is not guaranteed, and can be small in some cases. The listFolder[Continue] functionality can return even just one entry per page sometimes. There are a few factors that can affect what/how much is returned in a single call, and that can vary over time and across accounts due…
-
How are you listing the contents of the account? Feel free to share the relevant code snippet(s) so we can take a look. From the description though, it sounds like you might only have listFolder and not listFolderContinue implemented and so are sometimes only retrieving a partial listing. This functionality is paginated…
-
Make sure you set the HTTP method to "POST". You don't have that specified so it looks like the client is defaulting to a value not valid for accessing this Dropbox API endpoint. Also, note that the /2/files/move_v2 endpoint is an "RPC" style endpoint, so it requires the parameters in the request body, not the…
-
Dropbox does offer an API that can be used to list the contents of folders, among other operations. Regardless of what platform you're using, as long as you can make HTTPS requests, you can issue calls to the Dropbox API. You can find everything you need to get started with the Dropbox API, including documentation,…
-
@"Mgymnasts" When using files_move_v2, the 'from_path' should be the full path of the item you want to move. If you want to move an entire folder and its contents, you would specify the 'from_path' like '/Child Folder/Grandchild Folder', which would move just 'Grandchild Folder' and its contents, or '/Child Folder', which…
-
@"Mgymnasts" Здравко is correct; while you mentioned using the 'files_move' method, the error output you showed contains a 'ListFolderError'. A ListFolderError would come from files_list_folder (or files_list_folder_get_latest_cursor). For comparison, files_move would raise a RelocationError. You can see the return and…
-
Dropbox API refresh tokens do not expire automatically, but they can be revoked on demand by the app or user. And yes, you can reply here again if/when needed.
-
@"andrejpet" Thanks for following up. A 'missing_scope' error indicates that while the app itself may be permitted to use that scope, the particular access token you're using to make the API call does not have that scope granted. Also, be aware that just adding a scope to your app via the App Console does not retroactively…
-
@"andrejpet" I see Здравко already helpfully offered some guidance, but if you still need help with this, it may be useful if you can share the relevant code snippet and the error/output you're getting. For instance, clarify exactly what you mean when you say "all of the sudden my access tokens have no permission"; are you…
-
Thanks for following up. I'm glad to hear that worked. I can only help with the Dropbox API itself, so for any questions regarding reporting or the Admin console, I suggest contacting support here.
-
Thanks for the note! I'll pass this message along to the right people.