2

I'd like to upload a large file (say 500MB) to OneDrive, but I cannot find any API to do chunked upload. There is one similar question here without explicit answer. It looks like there is no support to chunked upload currently?

Thanks.

fcamel
  • 100
  • 1
  • 17

2 Answers2

2

That's correct, we currently do not support this.

  • I've recorded this request in our backlog for the API. It's definitely something we've heard before and are investigating options for how we can provide that functionality. – Ryan Gregg May 13 '14 at 18:38
2

OneDrive already support chunking upload

https://gist.github.com/rgregg/37ba8929768a62131e85

Ivan K.
  • 48
  • 6
  • 1
    Because it requires the `Content-Length` being set it is not feasible for some use cases where the file size is not known in advance. The API lacks support for chunked encodings. – David Kocher Sep 11 '18 at 07:50