use of com.dropbox.client2.session.AppKeyPair in project Aegis by Decad3nce.
the class BackupDropboxAccountsActivity method buildSession.
private AndroidAuthSession buildSession() {
AppKeyPair appKeyPair = new AppKeyPair(APP_KEY, APP_SECRET);
AndroidAuthSession session;
String[] stored = getStoredKeys();
if (stored != null) {
Log.e(TAG, "Auth keys were stored, recovering");
AccessTokenPair accessToken = new AccessTokenPair(stored[0], stored[1]);
session = new AndroidAuthSession(appKeyPair, ACCESS_TYPE, accessToken);
} else {
Log.e(TAG, "Auth keys were not stored");
session = new AndroidAuthSession(appKeyPair, ACCESS_TYPE);
}
return session;
}
use of com.dropbox.client2.session.AppKeyPair in project skype-bot by toomasr.
the class DropboxDirPluginFileRepository method initDropboxApi.
private void initDropboxApi() {
AppKeyPair appKeys = new AppKeyPair(Configuration.getProperty("dropbox.appkey"), Configuration.getProperty("dropbox.appsecret"));
WebAuthSession session = new WebAuthSession(appKeys, AccessType.DROPBOX, new AccessTokenPair(Configuration.getProperty("dropbox.token.key"), Configuration.getProperty("dropbox.token.secret")));
api = new DropboxAPI<WebAuthSession>(session);
}
Aggregations