【发布时间】:2015-08-31 12:11:48
【问题描述】:
我正在尝试在我的应用上实现 google 登录。我设法登录并存储令牌,但由于任务是异步的,我不知道它何时完成,因此我无法在进一步的方法中安全地使用令牌。如何向 onPostExecute 添加回调方法?
代码如下:
@Override
public void onConnected(Bundle bundle) {
// onConnected indicates that an account was selected on the device, that the selected
// account has granted any requested permissions to our app and that we were able to
// establish a service connection to Google Play services.
Log.d(TAG, "onConnected:" + bundle);
mShouldResolve = false;
mAccountName = Plus.AccountApi.getAccountName(mGoogleApiClient);
//HERE I RETRIEVE THE TOKEN AND NEED TO IMPLEMENT CALLBACK
new RetrieveTokenTask().execute(mAccountName);
// Show the signed-in UI
Intent intent = new Intent(getActivity(), MainActivity.class);
startActivity(intent);
}
@Override
public void onClick(View v) {
if (v.getId() == R.id.sign_in_button) {
onSignInClicked();
}
}
private void onSignInClicked() {
// User clicked the sign-in button, so begin the sign-in process and automatically
// attempt to resolve any errors that occur.
mShouldResolve = true;
mGoogleApiClient.connect();
// Show a message to the user that we are signing in.
//mStatusTextView.setText(R.string.signing_in);
Log.i("GoogleSignIn", "in progress");
}
private class RetrieveTokenTask extends AsyncTask<String, Void, String> {
@Override
protected String doInBackground(String... params) {
String accountName = params[0];
String scopes = "oauth2:profile email";
String token = null;
try {
token = GoogleAuthUtil.getToken(getActivity().getApplicationContext(), accountName, scopes);
} catch (IOException e) {
Log.e(TAG, e.getMessage());
} catch (UserRecoverableAuthException e) {
//startActivityForResult(e.getIntent(), REQ_SIGN_IN_REQUIRED);
} catch (GoogleAuthException e) {
Log.e(TAG, e.getMessage());
}
return token;
}
@Override
protected void onPostExecute(String token) {
super.onPostExecute(token);
Log.i("Token Value: ", token);
//TODO : access token verifier https://developers.google.com/identity/sign-in/android/backend-auth
accessToken = token;
}
}
【问题讨论】:
标签: android android-asynctask google-signin