dropbox-sdk-ruby
dropbox-sdk-ruby copied to clipboard
September 30th Dropbox Update Actions Required - Will this break the gem?
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 while, are these changes going to break this gem?
Or has everyone migrated over to Jesus's Dropbox API gem by now? https://github.com/Jesus/dropbox_api
I was able to override this method to get rid of the token format check. For our purposes (simple uploading/downloading/moving), this seems to work until we can switch to jesus/dropbox_api
.
module Dropbox
class Client
def initialize(access_token)
@access_token = access_token
end
end
end