-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chunked downloads #8
Comments
Sorry for the late reply. I couldn't find the option to download a specific range of bytes anywhere in their API documentation. Could you link to any resource related to this? If this is actually possible I'd be interested in implementing this feature. |
https://www.dropbox.com/developers-v1/core/docs#files-GET Look at the Notes section |
That link is for Dropbox API v1, this library implements API v2. However, I could find this in the docs from v2:
Source: https://www.dropbox.com/developers/documentation/http/documentation#formats So, you're right and it should be possible to download a range of bytes. I'm not sure yet about the details on how this is meant to work. I'll see if we can have support for this feature soon. |
Here's my monkeypatch:
|
For getting large files from a user's Dropbox, their API allows you to specify a range of bytes--is this possible in the current
dropbox_api
gem's DSL?The text was updated successfully, but these errors were encountered: