nileshbirhade
nileshbirhade

Reputation: 837

facebook.authorize not working on mobile phone

facebook.authorize(this,new String[] { "email", "read_stream" },new DialogListener() giving me problem on mobile phone... but its working on Emulator.. can anyone tell me what idone wrong

Upvotes: 1

Views: 1908

Answers (2)

Woodpecker
Woodpecker

Reputation: 31

Did you add this function? If not, just add it.

 protected void onActivityResult(int requestCode, int resultCode, Intent data)
 {  
   facebook.authorizeCallback(requestCode, resultCode, data);
 }

Upvotes: 3

dell116
dell116

Reputation: 5915

..take a look at my post from the other week found here

I found that the best way to get facebook integrated with your app is to look at the examples at github.

Upvotes: 1

Related Questions