I\'m trying to integrate facebook login on my android app. I found a lot of examples on internet, but now I have the following problem and I can\'t find a solution.
Make sure that you implemented onActivityResult() properly as stated in the official documentation:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
facebook.authorizeCallback(requestCode, resultCode, data);
}