8

我正在尝试使用 AccountManager 获取已安装 Google 帐户的令牌。当我在我的 AccountManagerFuture 对象上调用 getResult() 时,我在设备上看到“无法登录”屏幕(进一步显示,“存在与 Google 服务器通信的探针。稍后再试。)。我检查了一个在调用此方法之前网络连接可用。我还在浏览器中检查了我能够访问的设备,例如 google.com。这是我的 AccountManagerCallback 的代码:

amf = accMgr.getAuthToken(account, authTokenType, null, true,  
    new AccountManagerCallback<Bundle>() {  
        public void run(AccountManagerFuture<Bundle> arg0) {  
            Bundle result;  
            Intent i;  
            String token;  

                try {        
                    result = arg0.getResult();  
                if (result.containsKey(AccountManager.KEY_INTENT)) {  
                     i = (Intent)result.get(AccountManager.KEY_INTENT);  
                     if (i.toString().contains("GrantCredentialsPermissionActivity")) {  
                         // Will have to wait for the user to accept  
                         // the request therefore this will have to  
                         // run in a foreground application  
                         cbt.startActivity(i);  
                     } else {  
                         cbt.startActivity(i);  
                     }

                     token = (String)result.get(AccountManager.KEY_AUTHTOKEN);  

                     } else {  
                         token = (String)result.get(AccountManager.KEY_AUTHTOKEN);       

                     }  
                 } catch (OperationCanceledException e) {  
                     e.printStackTrace();  
                 } catch (AuthenticatorException e) {  
                     e.printStackTrace();  
                 } catch (IOException e) {  
                     e.printStackTrace();  
                 }  

            }  
       }, handler);

此外,LogCat 中的这些条目可能会有所帮助:

08-02 15:51:00.911: I/GLSUser(10134): GLS error: Unknown XXXX@gmail.com com.google
08-02 15:51:00.911: V/GoogleLoginService(10134): Returning error intent with: ComponentInfo{com.google.android.gsf.login/com.google.android.gsf.login.LoginActivity}
08-02 15:51:03.294: I/ActivityManager(324): START {cat=[XXXX@gmail.com] flg=0x10000000 cmp=com.google.android.gsf.login/.LoginActivity (has extras) u=0} from pid 11147

(注意:为了避免垃圾邮件,删除了实际的 gmail 帐户名称。)

4

1 回答 1

0

您是否正在生成签名的 APK?如果您不生成签名的 APK(例如,如果您只是点击“运行应用程序”),您将无法利用设备上注册的 Google 帐户。因此,您必须点击“与其他人登录”并以迂回方式登录。

(免责声明:我没有尝试运行您的代码,但这听起来像是我之前遇到的问题。)

于 2013-06-14T02:25:25.347 回答