Take Your Search Game to the Next Level with Dropbox Dash 🚀✨ Curious how it works? Ask us here!
Error Messages
13 TopicsCloudRail - Dropbox - Missing client_id
Over the Easter weekend (Apr-10, 2025), Dropbox apparently made a change that makes it impossible for PimlicalAdvancedCalendar to log in through its CloudRail library. This has worked flawlessly for many years, and no change was made to PimlicalAdvancedCalendar or the CloudRail library (which is no longer supported by the developer). Is there a reason why Dropbox has suddenly made this change? Anyone else out there with an application that was using CloudRail to access Dropbox have any idea of what Dropbox did over the Easter Weekend?31Views0likes1CommentRequest Id: eb653fb08d0e425eb445cc599c6e9e7d
Dear Dropbox Support, We are encountering an issue when attempting to interact with Dropbox using SqlBak, our database backup software that uploads files to Dropbox as a destination. We would appreciate your assistance in diagnosing and resolving the problem. Recently, we encountered the following error: 2025-03-10 11:25:50.7245|DEBUG|4|SqlBak.Destination.Dropbox.Impl.DropboxFileHandler|ExecFunc. Begin. 2025-03-10 11:26:06.1106|WARN|4|SqlBak.Destination.Dropbox.Impl.DropboxFileHandler|ExecuteWithRetry. AttenmpNo: "1"; RetryAfter: "".|Dropbox.Api.ApiException`1[Dropbox.Api.Files.SearchError] at Dropbox.Api.DropboxRequestHandler.<Dropbox-Api-Stone-ITransport-SendRpcRequestAsync>d__12`3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at SqlBak.Destination.Dropbox.Impl.DropboxFileHandler.ExecuteWithRetry[T](CancellationToken cancellationToken, Func`2 getTask, Int32 ё1retryCount, Func`2 canRetry); Request Id: eb653fb08d0e425eb445cc599c6e9e7d Could you please help us understand what might be causing this error and suggest any possible resolutions? If you need any additional details, we will provide as much information as possible. Looking forward to your response. Best regards, Oleg192Views0likes7CommentsReceiving Too Many Mounts error even though I do not have more than 1500 folders.
My app uses the Dropbox API to create folders, upload files and share the folders and recently I started getting an error message about exceeding the tree size. After getting this I re-organized a bunch of folders so I no longer have more than 1500 folders within 1 parent folder. I am able to create and share more folders if done through the web interface, but it doesn't seem to work through the API even after moving folders around. I get the following response when calling the /sharing/share_folder endpoint. Is there something weird going on where Dropbox 'remembers' where a folder was when it was originally shared, and even though I've moved it, it still counts as a shared folder within it's prior parent folder? {"error_summary": "too_many_mounts/tree_size_exceeded/.", "error": {".tag": "too_many_mounts", "too_many_mounts": {".tag": "tree_size_exceeded", "limit": 1500, "current_count": 1500, "new_count": 1501}}, "user_message": {"locale": "en", "text": "Your Dropbox account has reached the limit for shared folders."}} <br />53Views0likes1CommentCan't test dropbox choser api via localhost
Currently trying to integrate dropbox into my weapp for an university project. But for some reason when clicking the implemented button to chose a file from dropbox i get this error window. And I can't add localhost as a choser domain for testing. Any ideas? Thanks in advance!SolvedError 500 finishing huge file upload (300GiB+)
Hello, When a huge file (300GiB+) is uploaded using the upload_session API an "Error 500 Internal Server Error" is received when the last part is uploaded (/upload_session/append with close set). I retry the request but an Error 500 raises again and again. Sometimes, after more than 1 hour retrying the file uploads successfully. I am using session_type sequential. The same code for smaller files (10GiB) works perfectly. Are you aware of the problem? Is there any workaround?721Views0likes5CommentsThe request was aborted: Could not create SSL/TLS secure channel.
The first time that i enter in my page i have this error "The request was aborted: Could not create SSL/TLS secure channel." If i reload the page this don't appare and it works. This is the code : Dim _command As String _command = "https://www.dropbox.com/oauth2/authorize?client_id=" & _App_key _command += "&response_type=code" _command += "&redirect_uri=https://xxxxxx.xxxxx.xx/Test.aspx" Dim Request As HttpWebRequest Request = HttpWebRequest.Create(_command) Request.Method = "GET" Request.KeepAlive = True ServicePointManager.Expect100Continue = True ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 Or SecurityProtocolType.Tls11 Or SecurityProtocolType.Tls Or SecurityProtocolType.Ssl3 Request.ContentType = "application/x-www-form-urlencoded" '"application/json" ' application/x-www-form-urlencoded" Request.AllowAutoRedirect = True Dim Response As HttpWebResponse = Request.GetResponse() Is anything about timeout ? Why if i reload the page this works ? Thank you Luca265Views0likes1CommentError 404 Server remote no found
I have an expired token so to get a new one. I try with this code but i have the error Error 404 Server remote no found. I use https://api.dropbox.com and https://api.dropboxapi.com with the same result. Dim _command As String _command = "https://api.dropboxapi.com/oauth2/token " _command += " -d grant_type=refresh_token " _command += "-d refresh_token=" & _refresh_token _command += "-d client_id=" & _App_key _command += "-d client_secret=" & _App_secret Dim Request As HttpWebRequest Request = HttpWebRequest.Create(_command) Request.Method = "POST" Request.KeepAlive = True ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 Or SecurityProtocolType.Tls12 Or SecurityProtocolType.Tls11 Or SecurityProtocolType.Tls Request.ContentType = "application/json" ' application/x-www-form-urlencoded" Request.UserAgent = "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" ServicePointManager.SecurityProtocol = CType(48, SecurityProtocolType) Or CType(192, SecurityProtocolType) Or CType(768, SecurityProtocolType) Or CType(3072, SecurityProtocolType) Request.AllowAutoRedirect = True Try Using response = CType(Request.GetResponse(), HttpWebResponse) Using reader = New IO.StreamReader(response.GetResponseStream()) _file = reader.ReadToEnd() End Using End Using Catch ex As WebException Using response = CType(ex.Response, HttpWebResponse) Using reader = New IO.StreamReader(response.GetResponseStream()) _errore = reader.ReadToEnd() End Using End Using Catch ex As Exception Throw End Try Thank you. LucaSolved1.3KViews0likes9CommentsAndroid Dropbox Chooser returns "Permanent failure" all of the sudden
We've used Dropbox SDK for 2 years now and everything worked smoothly. We also use Dropbox Choose to open images into our application. Today suddently we receive a 'Permanent failure' message for every image selected from a Dropbox folder to be opened. Are they any updates that impact the current implementation? Thank you.1.6KViews1like3Comments