We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

neilgd's avatar
neilgd
Explorer | Level 4
2 years ago

"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...
  • Greg-DB's avatar
    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.