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 developed an application which uses we can login to facebook and the logged user details can be stored. it is working fine when we run the application on emulator , but when we run the same application on android device it does not run .It only show the loading again and again but not showing the login window.

  • I used the appID which facebook provided me.
  • I used the hashkey as directed in facebook development section.

Overall application (i.e. facebook login window, returning the info of user ) is working well on different emulators but on actual device not even opening the login window it's just showing loading...

share|improve this question
1  
Stiffler can you try to ask an actual question here? I understand the problem, but what exactly are you looking for? – Brian Deragon Dec 14 '11 at 14:51

1 Answer

up vote 5 down vote accepted

Please Update below code of your application, it will solve your problem.

public void loginAndPostToWall() {
    facebook.authorize(this, PERMISSIONS, Facebook.FORCE_DIALOG_AUTH,
            new LoginDialogListener());
}
share|improve this answer
1  
This worked for me. Thanks! – Kenny C Jan 19 '12 at 17:02
1  
U rock! Works for me too. – Imon Feb 9 '12 at 3:09
1  
@Downvoter Give me reason for downvote so i can improve it. – Dipak Keshariya Dec 10 '12 at 6:17

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.