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.
Forum Discussion
zap2it
6 years agoExplorer | Level 4
Vb.Net can upload a file to dropbox
Can you help me guys? Im trying to upload my first file to dropbox using vb.net. But Still have error: Status-Code:0, Content-type:0 My code below, can you correct me where do I do a mistake? ...
- 6 years ago
Based on the output you shared, it looks like you're getting a status code of "0". That's not a real HTTP status code, however, so it looks like the HTTPS connection itself may not be succeeding. Is there any reason (e.g., proxy, firewall, security software, etc.) that you wouldn't be able to connect to https://content.dropboxapi.com?
zap2it
Explorer | Level 4
You were right, Thank you.
I spend long hours solving this problem. It was a proxy problem.
Mohanad1
2 years agoExplorer | Level 3
Imports System.IO
Imports RestSharp
Module Module1
Sub Main()
Dim sourceFile As String = "C:\Users\rw\Desktop\Proximus_logo.png"
Dim data As Byte() = File.ReadAllBytes(sourceFile)
Dim RestClient As RestClient = New RestClient("https://content.dropboxapi.com/2/files/upload")
Dim request As RestRequest = New RestRequest(Method.POST)
request.AddHeader("Content-Type", "application/octet-stream")
request.AddHeader("Authorization", "Bearer <token>")
Dim meta As String = "{""path"": ""/home/proximus_logo.png"", ""mode"": ""add"", ""autorename"": true, ""mute"": false}"
request.AddHeader("Dropbox-API-Arg", meta)
request.AddParameter("application/octet-stream", data, ParameterType.RequestBody)
Dim response As IRestResponse = RestClient.Execute(request)
If response.IsSuccessful Then
Console.WriteLine("SUCCESS: " & response.StatusDescription)
Else
Console.WriteLine("FAILED: " & response.StatusDescription)
End If
Console.WriteLine(response.Content)
End Sub
End Module
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 12 months agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!