Dropbox OAuth Helper Instant Gratification: Get a Token and Get Started!

To get your app key and secret, browse to the Dropbox Apps Console. From there, you can create a new app or get the key and secret from an existing app.

Your OAuth token is .

Your OAuth token secret is .

Sample code using the Python SDK:

import dropbox
dbsess = dropbox.session.DropboxSession('', '', 'app_folder')
dbsess.set_token('', '')
client = dropbox.client.DropboxClient(dbsess)
client.put_file('hello.txt', 'Hello, World!')

File written successfully!