I'd like to use the android AccountManger to sync my webservice and application (standard sync of contacts and calander) however, AccountManager only appears to store a username and password. My web service takes three credentials: a username, a password and an account. What is the best practice for storing the third piece of information?

link|improve this question

sorry for a silly one but can you not merge up UserName and Account and keep it a s logical 'UserName'? – user572559 Aug 15 '11 at 9:11
feedback

2 Answers

up vote 0 down vote accepted

From Android's documentation it's supposed to be done with either the userData Bundle when the Account is added:

AccountManager manager = AccountManager.get(context);
manager.addAccountExplicitly(account, null, userData);

or adding explicitly the values:

manager.setUserData(account, KEY, value);

But I'm having trouble with this:

AccountManager IllegalArgumentException: key is null

link|improve this answer
Thanks for the reply. I ended up abandoning the account manager. I had so much trouble with it in the end. Having said that it looks like my project is growing and I may well return to it. I'll check your answer out soon – CrimsonChin Dec 4 '11 at 17:22
feedback

As pablisco explained, you can use AccountManager's ability to store arbitrary user data through addAccountExplicitly()'s userData Bundle parameter:

    final Bundle extraData = new Bundle();
    extraData.putString("someKey", "stringData");
    boolean accountCreated = am.addAccountExplicitly(account, password, extraData);

Later on, for example in your Authenticator's getAuthToken() method, you can retrieve the data related to the account you are working with:

    String myData = am.getUserData(account, "someKey");

Unfortunately as of this writing you can only retrieve Strings, so your data should be stored as a String when you first build the Bundle. Hope this helps someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.