- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在努力了解 Android AccountManager 和 OAuth。我想做的是不让手机访问密码。 (这就是谷歌的建议:“Be Smart About Security!”)所以我检查了 Google 示例应用程序 SampleSyncAdapter并开始通读代码。然后我在 AuthenticatorActivity 中看到了这种情况:
private AccountManager mAccountManager;
private String mPassword;
/**
* ... Sets the
* AccountAuthenticatorResult which is sent back to the caller. We store the
* authToken that's returned from the server as the 'password' for this
* account - so we're never storing the user's actual password locally.
*
* @param result the confirmCredentials result.
*/
public void handleLogin(View view) {
....
mPassword = mPasswordEdit.getText().toString();
....
Log.d(TAG, "mPassword set to Account:" + mAccountManager.getPassword(account));
}
private void finishLogin(String authToken) {
....
mAccountManager.addAccountExplicitly(account, mPassword, null);
....
}
此日志消息是“mPassword set to Account:test”。因此,当您阅读其余部分时,这在某种程度上是可以理解的
protected String doInBackground(Void... params) {
....
return NetworkUtilities.authenticate(mUsername, mPassword);
....
}
如果密码是 token ,这将不起作用。
此外,我希望其余代码在 Authenticator 中的 getAuthToken() 上以不同方式工作我假设我在某些事情上完全错了,但我只想使用 AccountManager 来存储 OAuth“舞蹈”的结果,以便我可以使用此帐户来验证我的 JSON RESTful 服务。
任何人都可以对此有所启发吗?
最佳答案
从文档中我们可以读到:
It's important to understand that AccountManager is not an encryption service or a keychain. It stores account credentials just as you pass them, in plain text. On most devices, this isn't a particular concern, because it stores them in a database that is only accessible to root. But on a rooted device, the credentials would be readable by anyone with adb access to the device.
因此,据我了解,这是一个滥用单词(密码和 token )的问题。我猜过程如下:
关于android - SampleSyncAdapter 存储密码明文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10335573/
我正在努力了解 Android AccountManager 和 OAuth。我想做的是不让手机访问密码。 (这就是谷歌的建议:“Be Smart About Security!”)所以我检查了 Go
我正在使用 Eclipse 来了解 SampleSyncAdapter 示例的工作原理。我无法让我的断点工作。我在多个位置设置了一个断点,但没有一个被击中。例如,AuthenticatorActivi
我是一名优秀的程序员,十分优秀!