3

大约 2 周前,我发布了一个非常成功的应用程序。但从昨天开始,用户不断向我发送有关 Drive 不再可用的电子邮件。经过快速调试,我发现对 Drive API 的请求现在返回“403 Forbidden”->“Access Not Configured”。

我认为这可能是刷新令牌未正确处理的问题。

我正在使用以下代码(来自 Android Drive SDK 示例):

mCredentials = GoogleAccountCredential.usingOAuth2(this, DriveScopes.DRIVE);
String accountName = PreferenceManager.getDefaultSharedPreferences(this).getString(PREF_DRIVE_NAME, null);
if (accountName != null) {
     setupDrive(accountName);
} else {
     startActivityForResult(mCredentials.newChooseAccountIntent(), 0);
}

setupDrive(...)看起来像这样:

 mCredentials.setSelectedAccountName(accountName);
 try {
        mCredentials.getToken();
 } catch (Exception e) {
        Log.w(AbstractDriveActivity.class.getSimpleName(), "Error getting auth token", e);
        if (e instanceof UserRecoverableAuthException) {
              Intent intent = ((UserRecoverableAuthException) e).getIntent();
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK).addFlags(Intent.FLAG_FROM_BACKGROUND);
        startActivity(intent);
        } else {
               Toast.makeText(AbstractDriveActivity.this, getString(R.string.toast_drive_setup_error),
                            Toast.LENGTH_SHORT).show();
               finish();
        }
  }
  drive = new Drive.Builder(AndroidHttp.newCompatibleTransport(), new GsonFactory(),
                    mCredentials).build();

知道这里可能有什么问题吗?

据我了解,GoogleAccountCredential使用 Google Play 服务来管理 OAuth2 流程,您需要提供的只是用户名。我错了吗?我错过了什么?

顺便说一句:清除应用数据后,再次选择 Google 帐户,一切正常。这就是为什么我认为它与刷新令牌有关。

戈登

4

1 回答 1

1

没有保证,但问题可能来自这里:

mCredentials = GoogleAccountCredential.usingOAuth2(this, DriveScopes.DRIVE);

这种方法对我来说似乎已弃用。您应该升级您的 SDK 和环境并将其更改为:

mCredentials = GoogleAccountCredential.usingOAuth2(this, Arrays.asList(DriveScopes.DRIVE));
于 2013-07-11T22:48:31.053 回答