All Projects → dropbox → Dropbox Sdk Ruby

dropbox / Dropbox Sdk Ruby

Licence: mit
A Ruby library for the Dropbox Core API.

Programming Languages

ruby
36898 projects - #4 most used programming language

===================================================================================================== WARNING: THIS GEM USES THE NOW DEPRECATED V1 API; APPS USING IT WILL NOT BE ACCEPTED INTO PRODUCTION.

More info: https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/

Dropbox Core SDK for Ruby

A Ruby library that for Dropbox's HTTP-based Core API.

https://www.dropbox.com/developers/core/docs


Setup

You can install this package using 'gem':

gem install dropbox-sdk


Getting a Dropbox API key

You need a Dropbox API key to make API requests.


Using the Dropbox API

Full documentation: https://www.dropbox.com/developers/core/

Before your app can access a Dropbox user's files, the user must authorize your application using OAuth 2. Successfully completing this authorization flow gives you an "access token" for the user's Dropbox account, which grants you the ability to make Dropbox API calls to access their files.

Once you have an access token, create a DropboxClient instance and start making API calls.

You only need to perform the authorization process once per user. Once you have an access token for a user, save it somewhere persistent, like in a database. The next time that user visits your app, you can skip the authorization process and go straight to making API calls.


Running the Examples

There are example programs included in the tarball. Before you can run an example, you need to edit the ".rb" file and put your Dropbox API app key and secret in the "APP_KEY" and "APP_SECRET" constants.


Running the Tests

gem install bundler

bundle install

cd test

DROPBOX_RUBY_SDK_ACCESS_TOKEN= bundle exec ruby sdk_test.rb

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].