android从客户经理获取gmail用户名和密码

前端之家收集整理的这篇文章主要介绍了android从客户经理获取gmail用户名和密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在为Android编写GMail客户端.我想在ListView中列出所有GMail帐户.当用户单击一个项目时,我希望程序检索相应帐户的密码.

但是,我得到一个SecurityException:

java.lang.SecurityException: caller uid 10107 is different than the authenticator's uid

这是我的代码

AccountManager accountManager = AccountManager.get(context);

this.username = account.name;
this.password = accountManager.getPassword(account); //this is where I get the exception

我在AndroidManifest.xml中拥有所有这些权限:

根据Android reference,唯一需要的权限应该是MANAGE_ACCOUNTS.

我的代码有什么问题?

最佳答案
您可以获得authtoken,但无法获得用户的实际凭据.实际的信用只能由创建它们的应用程序访问.从getPassword方法的文档(强调我的):

This method requires the caller to hold the permission AUTHENTICATE_ACCOUNTS and to have the same UID as the account’s authenticator.

原文链接:https://www.f2er.com/android/430487.html

猜你在找的Android相关文章