We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
neilgd
2 years agoExplorer | Level 4
"The response ended prematurely" after one hour of a file download
I'm trying to download a large (80Gb) file from the Dropbox servers. After *exactly* one hour, I get an exception indicating that the Dropbox servers have dropped the connection (System.IO.IOExce...
- 2 years ago
If these are failing after an hour, that would be due to the server timeout. There isn't an option to delay or prevent that.
Content-download style endpoints, such as /2/files/download, support "range requests" though. I recommend using range requests to continue downloading the rest of the data if a connection fails, and repeat as needed for up to one hour per connection.
Here's a basic example showing how to do that:
HttpClient client = new HttpClient(); HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "https://content.dropboxapi.com/2/files/download"); request.Headers.Add("Authorization", "Bearer " + accessToken); request.Headers.Add("Dropbox-API-Arg", "{\"path\":\"/test.txt\"}"); // in real code, use a JSON library to build this request.Headers.Add("Range", "bytes=5-"); // this requests the rest of the file after the first 5 bytes HttpResponseMessage response = await client.SendAsync(request); Stream stream = response.Content.ReadAsStream(); // read from stream as desired
For instance, in this example, this would be helpful if the app previously only downloaded the first 5 bytes of the file, and needs the rest. In your actual use, you would programmatically set the byte range as needed based on what you successfully downloaded so far of course.
Greg-DB
2 years agoDropbox Staff
If these are failing after an hour, that would be due to the server timeout. There isn't an option to delay or prevent that.
Content-download style endpoints, such as /2/files/download, support "range requests" though. I recommend using range requests to continue downloading the rest of the data if a connection fails, and repeat as needed for up to one hour per connection.
Here's a basic example showing how to do that:
HttpClient client = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "https://content.dropboxapi.com/2/files/download");
request.Headers.Add("Authorization", "Bearer " + accessToken);
request.Headers.Add("Dropbox-API-Arg", "{\"path\":\"/test.txt\"}"); // in real code, use a JSON library to build this
request.Headers.Add("Range", "bytes=5-"); // this requests the rest of the file after the first 5 bytes
HttpResponseMessage response = await client.SendAsync(request);
Stream stream = response.Content.ReadAsStream(); // read from stream as desired
For instance, in this example, this would be helpful if the app previously only downloaded the first 5 bytes of the file, and needs the rest. In your actual use, you would programmatically set the byte range as needed based on what you successfully downloaded so far of course.
- neilgd2 years agoExplorer | Level 4
Thank you! That works a treat.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 6 hours 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!