Jesus / dropbox_api

Ruby client library for Dropbox API v2
MIT License
171 stars 113 forks source link

Chunked Uploads #14

Closed bv-rohit closed 7 years ago

bv-rohit commented 7 years ago

I want to upload files in chunk using /upload_session/* endpoints. It seems that this has not been implemented as per http://www.rubydoc.info/gems/dropbox_api/file/api_coverage.md ,

but there's a comment "Do not use this to upload a file larger than 150 MB. Instead, create an upload session with #upload_session_start()." in upload.rb which is creating the confusion, BTW I was not able to see the implementation of upload_session_start() so I assume it is not implemented till now.

Am I missing something?

Jesus commented 7 years ago

You're correct, the upload_session_* endpoints haven't been implemented yet.

Hopefully I'll be able to add them soon.

bv-rohit commented 7 years ago

Thanks Jesus! Much appreciated.

Jesus commented 7 years ago

I'm glad to announce that latest version (0.1.5) includes an implementation of the following endpoints:

Which should be enough to allow big uploads.