我正在使用Android Dropbox API。在我的应用程序的主要活动中,我正在对dropbox api进行auth调用。问题是,每次我的应用启动时,用户都必须点击“允许”以授予该应用访问其保管箱的权限。我的代码如下:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    getWindow().requestFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.main);



    //clearKeys();
    //Log.e(TAG, "keys cleared");

    AppKeyPair appKeys = new AppKeyPair(APP_KEY, APP_SECRET);
    AndroidAuthSession session = new AndroidAuthSession(appKeys, ACCESS_TYPE);




    mDBApi = new DropboxAPI<AndroidAuthSession>(session);

    mDBApi.getSession().startAuthentication(Main.this);
    Log.e(TAG, "started authentication");





protected void onResume() {
    super.onResume();



    if (mDBApi.getSession().authenticationSuccessful()) {
        try {
            // MANDATORY call to complete auth.
            // Sets the access token on the session
            mDBApi.getSession().finishAuthentication();

            if(mDBApi.getSession().authenticationSuccessful()){
            Log.e(TAG, "Authentication finished");
            }
            AccessTokenPair tokens = mDBApi.getSession().getAccessTokenPair();

            // Provide your own storeKeys to persist the access token pair
            // A typical way to store tokens is using SharedPreferences
            storeKeys(tokens.key, tokens.secret);
        } catch (IllegalStateException e) {
            Log.i("DbAuthLog", "Error authenticating", e);
        }
    }


}//end of onResume()


我需要找到一种方法来知道该应用程序已通过身份验证,因此在这种情况下,我可以绕过身份验证。我现在不知道该怎么做。有人可以协助吗?

最佳答案

进行身份验证之前,请检查所存储的访问令牌是否仍然有效(当然,如果有的话)。为此,只需向通过OAuth公开的任何方法发出授权请求即可。最好调用一个导致简短的简单输出的方法。
如果此调用由于令牌无效/过期而失败,请继续进行身份验证。此时,更新存储的令牌,其余令牌应像以前一样工作

08-18 08:57