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.

AccountManager keeps track of cloud login information on Android devices. It uses plugins to communicate with different kinds of services, and the user only has to enter the information once. Applications don't need to deal with passwords, and may instead ask for permission to gain access to ...

learn more… | top users | synonyms

0
votes
0answers
47 views

How do I use Mac OS X account manager credentials in my app?

Mac OS X Mountain Lion now provides a central way to authenticate to and integrate with various services, including iCloud, Gmail, Twitter, Facebook, and Flickr. My application uses APIs for these ...
0
votes
1answer
210 views

Retrieving auth token for facebook account configured in mobile via account manager in android

I am trying to get Auth token for a facebook account configured in device via account manager in android using accountManager.getAuthToken(account,"user_activities",null,Hellol10n.this, new ...
0
votes
2answers
417 views

What are values for authTokenType in the Android AccountManager getAuthToken?

The Facebook application for Android provides an authenticator for the AccountManager. I'm trying to get the access token with the method getAuthToken, but I do not know what are the possible values ...
3
votes
2answers
601 views

getting Facebook ID of an already registered android Account

I want to get the facebook ID of an Android Account. If it's possible, would like to use the Facebook SDK to do some things like posting on the wall. How can i get the informations from the ...
7
votes
4answers
4k views

How to retrieve an Facebook-AuthToken from the accounts saved on Android

I'm trying to retrieve the AuthToken for Facebook (saved by Facebook for Android) by using the following piece of code. AccountManager am = AccountManager.get(this); Account[] accounts = ...