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'm developing an android app which makes connection with facebook, twittter, google, etc... and know what I'm doing is logging againsy providers with my oauth's ids and so on. Now, I'm just getting auth id (but I think this is not the one I want, because I don't have to accept facebook or twitter permissions) with this code lines, but as I've told you, I think, that is not what I'm looking for:

 AccountManager accountManager = AccountManager
            .get(getApplicationContext());
 accountManager.getAuthToken(account, "mail", false,
            new AuthTokenCallback(), null);

I just want to use the log data from their android apps. So, the behavour must be...

1) Run my app

2) Press Login button with the provider selected (for ex. Facebook)

3) Now, facebook app (if present on android phone) opens and asks you for permissions for your registered app and gives to the app the oauth token.

I've seen this in several apps on Android, but I don't have any example in my mind... sorry =(

Thanks for all your responses!!!!

share|improve this question
ok, I think it's single sign on – Javier Manzano May 11 '12 at 10:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.