UserRecoverableAuthException:意图未启动

时间:2013-05-14 11:09:49

标签: android android-intent oauth-2.0

我正在尝试触发应用程序询问用户的窗口 同意应用程序通过访问用户数据 GoogleAuthUtil.getToken()。

但是我看不到从UserRecoverableAuthException触发的活动。

我已搜索但未找到任何可解决此问题的有用帖子。

有人有什么想法吗? (打出“Shoot2!”但没有任何反应 在那之后的LogCat中。

  @Override
  public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    System.out.println("HERE!!!");
    System.out.println(CalendarScopes.CALENDAR);

    new AsyncTask<Void, Void, Void>() {

      @Override
      protected Void doInBackground(Void... params) {

        try {
          System.out.println("Hello2!");
          String token = GoogleAuthUtil.getToken(EventsActivity.this, "jdoe@gmail.com", "oauth2:" + CalendarScopes.CALENDAR);
          System.out.println("token");
          System.out.println("Hello3!");
        } catch (GooglePlayServicesAvailabilityException playEx) {
          System.out.println("Shoot1!");
          playEx.printStackTrace();
        } catch (UserRecoverableAuthException recoverableException) {
          System.out.println("Shoot2!");
          Intent recoveryIntent = recoverableException.getIntent();
          recoveryIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK).addFlags(Intent.FLAG_FROM_BACKGROUND);
          // Use the intent in a custom dialog or just startActivityForResult.
          startActivityForResult(recoveryIntent, 99);
        } catch (GoogleAuthException authEx) {
          System.out.println("Shoot3!");
          // This is likely unrecoverable.
          authEx.printStackTrace();
        } catch (IOException ioEx) {
          System.out.println("Shoot4!");
          ioEx.printStackTrace();
        }

        return null;

      }
}.execute();

1 个答案:

答案 0 :(得分:0)

我发现在我的情况下,授权意图没有被触发,因为我将singleInstance添加到AndroidManifest.xml中的活动

卸下

android:launchMode = "singleInstance"

解决了这个问题以及活动之间的一些其他奇怪的过渡效应。