I am using Fragments in android and integrating facebook login with it, to fetch user details.
public void postOnfacebook() {
Session.openActiveSession(getActivity(), this, true,
new StatusCallback() {
@Override
public void call(Session session, SessionState state,
Exception exception) {
if (session.isOpened()) {
Request.executeMeRequestAsync(session,
new GraphUserCallback() {
@Override
public void onCompleted(GraphUser user,
Response response) {
if (user != null) {
id = user.getId();
name = user.getName();
gender = user
.getProperty("gender") == null ? "male"
: user.getProperty(
"gender")
.toString();
}
}
});
}
}
});
}
I also have following method included in my fragment as per documentation
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Session.getActiveSession().onActivityResult(getActivity(), requestCode,
resultCode, data);
}
I have tried same code in Activity, it works there but it doesnot work inside the Fragment.
I have included LoginActivity inside AndroidManifest.xml and metadate for facebookapplicationId as per documentation.
Can you please suggest where I am going wrong in case of Fragment.