Reputation: 837
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
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
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