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.
Error Messages
6 TopicsError 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 receivedwhen the last part is uploaded (/upload_session/append with close set). I retry the request but an Error 500 raises again and again. Sometimes, aftermore than 1 hour retrying the file uploads successfully. I am usingsession_typesequential. The same code for smaller files (10GiB) works perfectly. Are you aware of the problem? Is there any workaround?685Views0likes5CommentsThe 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 Luca240Views0likes1CommentError 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.comandhttps://api.dropboxapi.comwith 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