dropbox-sdk-ruby
dropbox-sdk-ruby copied to clipboard
Ruby SDK for the Dropbox API v2
September 30th dropbox is making changes to their API related to: ACTION REQUIRED: ID Formats ACTION REQUIRED: tokens and permissions I see this gem hasn't gotten an update in a...
Hi, A couple of additions for your consideration, please: - Content_hash information allows us to check locally if the file has been changed since the previous upload (using the DropboxContentHasher...
List folder receives according to [docs](https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder): ``` { "path": "/Homework/math", "recursive": false, "include_media_info": false, "include_deleted": false, "include_has_explicit_shared_members": false } ``` I'd be able to work on this if you're interested...
there is no way to set download file path?
:pray: would it be possible to add example to README on how to do chunked upload ? (I can see in the sourcecode you added this capability) thx
Ruby implements a method, Exception#message, which returns the result of calling #to_s on the exception object: https://ruby-doc.org/core-2.2.0/Exception.html#method-i-message In the ApiError class, the constructor in some cases sets @message to be...
I've added media_info support to the FileMetadata object in https://github.com/cantino/dropbox-sdk-ruby/commit/fe0ef0fed640ada71cb29217599d2967ede2ffc4. If you're interested in PRs, let me know.
Add a `list_all_files` method to `Client` * uses the `files/list_folder/continue` endpoint with a cursor * replaces `/delta` from v1 - https://www.dropbox.com/developers/reference/migration-guide
Currently, the upload call fores Time.now as client_modified time. User should be able to pass client_modified date/time to preserve the original file time-stamp.