In my app I've integrated the Dropbox API that works with access_token. I don't want access to Dropbox each time that my app add or change a file, so I want to declare a global variable for use in all my controllers, but I don't know how to do that. My snippet is thus:
session_dropbox = DropboxSession.new CONFIG['dropbox']['app_key'], CONFIG['dropbox' ['app_secret']
session_dropbox.set_access_token CONFIG['dropbox']['token_key'], CONFIG['dropbox']['token_secret']
dropbox = DropboxClient.new session_dropbox, :app_folder
And I wish do this:
def
file = Dropbox.get_file 'file.txt'
...
end
I currently use Rails 3