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 coding for the Login with the Facebook into my android application.I am following this STEPS.

I have problem that The logout button is not showing after login, it still displayed me login button. This problem is occure when I install the facebook app into emulator, but without install facebookapp it's working.

Login button

After install Facebook Application :

enter image description here

  1. Press on the login button(From my application)
  2. If not login then redirect to the facebook app
  3. After login into facebook app back to my app and don't show me logout button but instead of logout it show me login button

Without install Facebook app : [This is working as I want]

enter image description here

  1. press the login button(from my application)
  2. Redirect to the facebook page (I don't know about this page)
  3. After login success back to my app, and show logout button.

enter image description here

Now In short, I want second senario same for the First Senario.

Thanks.

share|improve this question

1 Answer

You may want to use FORCE_DIALOG_AUTH while facebook.authorize

facebook.authorize(HomeTab.this, new String[] {"publish_stream"}, Facebook.FORCE_DIALOG_AUTH,new Facebook.DialogListener() {

As you can see third parameter use FORCE_DIALOG_AUTH.

share|improve this answer
Thanks, but can you please tell me where I have to add this? – user1584610 Jan 28 at 7:48
you havent shown any code, check in authorization with facebook, else post your code that you are using while login – Amit Hooda Jan 28 at 7:53
ohh it luks like they have changed the code and process,, will take a look at this again and let you know – Amit Hooda Jan 28 at 7:57
I am coding from developers.facebook.com/docs/howtos/androidsdk/3.0/… – user1584610 Jan 28 at 8:55

Your Answer

 
discard

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