I am trying to integrate Facebook sdk into my app.
When I press facebook login button, it shows generic erro "An error occurred. Please try again later" Anyone knows what might be the cause of it.
private final class ButtonOnClickListener implements OnClickListener {
public void onClick(View arg0) {
if (mFb.isSessionValid()) {
SessionEvents.onLogoutBegin();
AsyncFacebookRunner asyncRunner = new AsyncFacebookRunner(mFb);
asyncRunner.logout(getContext(), new LogoutRequestListener());
} else {
mFb.authorize(mActivity, mPermissions, new LoginDialogListener());
}
}
}
Can anyone help me with this issue?
Thanks a lot.