3

私はAndroidプログラミングの初心者です。私は、自分が書いているアプリ [の始まり] に Dropbox を統合しようとしてきました。指示に従い、Dropbox API に付属する基本的な例の DBRoulette を調べました。

私が実行し続ける問題は、(Web ブラウザーを介して) Dropbox にログインし、アプリがその Dropbox App フォルダーを使用できることを確認することです...そのセッションでは正常に動作しますが、アプリを完全に閉じて開くと、もう一度、もう一度ログインするように求められます。これがデバッグ目的であっても、ドロップボックスのログイン情報をすべて再入力する必要は絶対にありません。興味深いことに、DBRoulette は問題なく動作します。毎回ログインする必要はありません。そして、その例から機能コードの多くをコピーして貼り付けました。

ところで、AccessToken には正確に何が含まれている/何をしているのでしょうか? 承認されたセッションを作成するための情報を保存しますか? この情報は、Dropbox 開発者サイトから取得したアプリ キー/シークレットの組み合わせとは異なりますか? これが私のエラーの場所だと思いますが、よくわかりません。

アクティビティは次のとおりです。

package com.JS.music;


import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

import com.dropbox.client2.DropboxAPI;
import com.dropbox.client2.android.AndroidAuthSession;
import com.dropbox.client2.session.AccessTokenPair;
import com.dropbox.client2.session.AppKeyPair;
import com.dropbox.client2.session.TokenPair;
import com.dropbox.client2.session.Session.AccessType;



public class MainActivity extends Activity {

private static String TAG = "MainActivity";

private Button gotoRecordingButton;
private Button libraryButton;

//Dropbox
final static private String APP_KEY = "xxxxxxxxxxxxx";
final static private String APP_SECRET = "xxxxxxxxxxxxxx"; 
final static private AccessType ACCESS_TYPE = AccessType.APP_FOLDER; 
private DropboxAPI<AndroidAuthSession> mDBApi; 
final static public String ACCOUNT_PREFS_NAME = "MusicDBPrefs";
final static public String ACCESS_KEY_NAME = "Music_DB_ACCESS_KEY";
final static public String ACCESS_SECRET_NAME = "Music_DB_ACCESS_SECRET";

private boolean mIsLoggedIn = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    gotoRecordingButton = (Button) findViewById(R.id.goto_recording_button);
    gotoRecordingButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(MainActivity.this, RecordActivity.class);
            startActivity(intent);
        }
    });

    libraryButton = (Button) findViewById(R.id.library_button);
    libraryButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

        }
    });

    AndroidAuthSession session = buildSession();
    mDBApi = new DropboxAPI<AndroidAuthSession>(session);
    mDBApi.getSession().startAuthentication(MainActivity.this);

    setLoggedIn(mDBApi.getSession().isLinked());

    Toast msg = Toast.makeText(this, "logged in: " + isLoggedIn(), Toast.LENGTH_LONG);
    msg.show();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}


//-------------Dropbox stuff  for testing and debugging---------

@Override
protected void onResume() {
    super.onResume();
    AndroidAuthSession session = mDBApi.getSession();

    // The next part must be inserted in the onResume() method of the
    // activity from which session.startAuthentication() was called, so
    // that Dropbox authentication completes properly.
    if (session.authenticationSuccessful()) {
        try {
            // Mandatory call to complete the auth
            session.finishAuthentication();

            // Store it locally in our app for later use
            TokenPair tokens = session.getAccessTokenPair();
            storeKeys(tokens.key, tokens.secret);
            setLoggedIn(true);
        } catch (IllegalStateException e) {
            Log.i(TAG, "Error authenticating", e);
        }
    }
}


//copied from dropbox API
private void storeKeys(String key, String secret) {
    // Save the access key for later
    SharedPreferences prefs = getSharedPreferences(ACCOUNT_PREFS_NAME, 0);
    Editor edit = prefs.edit();
    edit.putString(ACCESS_KEY_NAME, key);
    edit.putString(ACCESS_SECRET_NAME, secret);
    edit.commit();
}


private String[] getKeys() {
    SharedPreferences prefs = getSharedPreferences(ACCOUNT_PREFS_NAME, 0);
    String key = prefs.getString(ACCESS_KEY_NAME, null);
    String secret = prefs.getString(ACCESS_SECRET_NAME, null);
    if (key != null && secret != null) {
        Log.i(TAG,"Got keys");
        String[] ret = new String[2];
        ret[0] = key;
        ret[1] = secret;
        return ret;
    } else {
        return null;
    }
}

private AndroidAuthSession buildSession() {
    AppKeyPair appKeyPair = new AppKeyPair(APP_KEY, APP_SECRET);
    AndroidAuthSession session;

    String[] stored = getKeys();
    if (stored != null) {
        AccessTokenPair accessToken = new AccessTokenPair(stored[0], stored[1]);
        session = new AndroidAuthSession(appKeyPair, ACCESS_TYPE, accessToken);
    } else {
        session = new AndroidAuthSession(appKeyPair, ACCESS_TYPE);
    }

    return session;
}

public void setLoggedIn(boolean loggedIn) {
    mIsLoggedIn = loggedIn;
}

public boolean isLoggedIn() {
    return mIsLoggedIn;
}
}

どんな助けでも大歓迎です!

4

2 に答える 2

4

私はそれが古い質問であることを知っていますが、誰かがそれに出くわした場合に備えて答えます.

説明されている主な問題については、毎回 Dropbox に再度ログインする必要があるということですが、これは単純に onCreate() の終わり近くにこの行があるためです。

mDBApi.getSession().startAuthentication(MainActivity.this);

startAuthentication() は、すでに有効なセッションがあるかどうかに関係なく、常に新しい「ログイン」フローを開始します。このため、毎回呼び出すべきではありません。

受け入れられた答えは良いですが、accessToken を保存することで、より少ないコードを使用することができます。最初に、finishAuthentication() の後の onResume() で、このように accessToken を保存します。

String accessToken = mDBApi.getSession().getOAuth2AccessToken();
// save accessToken to SQLite or SharedPrefs or whatever

次に、@Alexandr によって提案された getDropboxAPI() メソッドは次のようになります。

private DropboxAPI <AndroidAuthSession> getDropboxAPI() {
    AppKeyPair appKeys = new AppKeyPair(APP_KEY, APP_SECRET);
    AndroidAuthSession session = new AndroidAuthSession(appKeys, ACCESS_TYPE);
    mDBApi = new DropboxAPI<AndroidAuthSession>(session);

    String savedAccessToken = // get previously saved accessToken

    if (!TextUtils.isEmpty(savedAccessToken)) {
        mDBApi.getSession().setOAuth2AccessToken(savedAccessToken);
    }

    return mDBApi;
}

ファイルのアップロードやダウンロードなどの実際の作業に使用する前に、Dropbox が適切に初期化されているかどうかを確認するために、このようなヘルパー メソッドを作成することもお勧めします。

public boolean isDropboxLinked() {
    return mDBApi != null && (mDBApi.getSession().isLinked() || mDBApi.getSession().authenticationSuccessful());
}
于 2015-01-29T22:46:14.597 に答える