Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to model an app based on http://code.google.com/p/jumpnote/

authBundle = am.getAuthToken(account, APPENGINE_SERVICE_NAME,
                        needAuthAction == NEED_AUTH_NOTIFICATION, null, null).getResult();


authToken = authBundle.getString(AccountManager.KEY_AUTHTOKEN);

authToken is returned null in this case.

What can be possible causes for this?

share|improve this question

1 Answer

Does the account already exist on the device? From the Class Overview section of the AccountManager javadoc:

Important: If the application is using a previously remembered account selection, it must make sure the account is still in the list of accounts returned by getAccountsByType(String). Requesting an auth token for an account no longer on the device results in an undefined failure.

share|improve this answer
For now, I am assuming that a user's account already exists. But in the future, if it does not exist, a user will provide it. I already retrieved the auth key from AccountManager (Account[] accts = mgr.getAccountsByType("com.google");) for a google account. But now the question is about a way to retrieve google calendar names so that a user can add/edit/delete events. – user826323 Feb 23 '12 at 4:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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