0

我正在尝试在我的 Android 应用程序中检索已登录用户的 Google Plus 访问令牌。我正在使用以下代码执行此操作,该代码遵循此处此处此处的建议:

private class RetrieveTokenTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... params) {
        int REQUEST_CODE_TOKEN_AUTH = 466453; // Any number, not really using it anyway.
        String accountName = params[0];
        String scopes = "oauth2:" + Plus.SCOPE_PLUS_LOGIN;
        String token = null;
        try {
            token = GoogleAuthUtil.getToken(getActivity(), accountName, scopes);
        } catch (IOException e) {
            Log.e(TAG, e.getMessage());
        } catch (UserRecoverableAuthException e) {
            startActivityForResult(e.getIntent(), REQUEST_CODE_TOKEN_AUTH);
        } catch (GoogleAuthException e) {
            Log.e(TAG, e.getMessage());
        }

        return token;
    }
}

我这样称呼它:

@Override
public void onConnected(Bundle connectionHint) {
    mSignInClicked = false;

    Person currentPerson = Plus.PeopleApi.getCurrentPerson(mGoogleApiClient);

    try {
        String accessToken = (new RetrieveTokenTask()).execute(Plus.AccountApi.getAccountName(mGoogleApiClient)).get();
    } catch (Exception ex) {
        Log.e(TAG, ex.getMessage());
    }
}

我在我的 AndroidManifest 中拥有以下权限(除其他外):

<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />

问题是调用时GoogleAuthUtil.getToken(),没有任何进展,它只会在那里冻结。我怎样才能解决这个问题?

4

1 回答 1

1

问题是当调用 GoogleAuthUtil.getToken() 时,没有任何进展,它只会在那里冻结。

因为您正在调用使主 UI 线程等到计算未完成的get()方法AsyncTaskdoInBackground

我怎样才能解决这个问题?

AsyncTask调用 方法执行execute,使用onPostExecute获取accessToken

于 2015-01-29T11:10:42.780 回答