You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
APIs
4 TopicsShare_folder endpoint returning too_many_mounts/tree_size_exceeded
An operation that worked perfectly fine before now returns the following error: makeDropboxRequest: https://api.dropboxapi.com/2/sharing/share_folder Error making Dropbox request: too_many_mounts/tree_size_exceeded/ Network error making request to https://api.dropboxapi.com/2/sharing/share_folder: Error: too_many_mounts/tree_size_exceeded/ The process leading up to this error: 1-4 subfolders are created, of which the parent (main) folder housing those 4 subfolders is shared so that groups can be assigned to have access to it. Other than that the folder is empty, and the subfolders are empty as well. This never happened before, so I'd like to know what changed so that we can apply a workaround.DBChooser for iOS - how to build locally
Hi, I have been using the DBChooser framework in my app for a few years and it's been working fine, until iOS18 came out and now it fails to open the Dropbox app when invoked, with this message: BUG IN CLIENT OF UIKIT: The caller of UIApplication.openURL(_:) needs to migrate to the non-deprecated UIApplication.open(_:options:completionHandler:). Seeing that DBChooser has been 'deprecated' on the Dropbox developer website, and that the Github repo hasn't been updated in 11 years, I thought I'd at least be able to download the code on my Mac and then be able to build the framework locally, and possibly fix some of the deprecation issues. Unfortunately the downloaded project fails to compile on my Mac. The error I get is in the 'Run Script' phase: accessing build database "/Users/myname/Library/Developer/Xcode/DerivedData/DBChooser-colttgencgxlykfovqhahsshavkt/Build/Intermediates.noindex/XCBuildData/build.db": database is locked Possibly there are two concurrent builds running in the same filesystem location. Can anyone help me figure this out? I am using Xcode 16.1, running macOS 15.1.39Views0likes4CommentsAPI Error "path/not_found" when creating shared_link
When interacting with the API, I get a path/not_found error. This happens when I upload a file to dropbox using the path /2/files/upload. After that, I create a link to the file using the path /2/sharing/create_shared_link and specify the path_display received after uploading the file. The error occurs very rarely, but it does not allow you to get a link. What could be the problem?79Views0likes3Comments0 bytes when uploading PDF through API
I am using Webflow and Wized to upload a file to Dropbox however when I upload the file the response says size 0 and in dropbox it says 0 bytes and I can't open it. const contentToCapture = document.querySelector('.pdf-content'); html2canvas(contentToCapture, { scale: 0.75 }).then((canvas) => { const base64image = canvas.toDataURL('image/png'); const pdf = new jsPDF('p', 'px', [canvas.width, canvas.height]); pdf.addImage(base64image, 'PNG', 0, 0, canvas.width, canvas.height); const pdfBlob = pdf.output('blob'); v.pdf_data = pdfBlob; }); Above is how I create the pdf and convert it to a blob. The pdf itself works fine when I download it. This is how the request is set up.Solved