Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

up vote 0 down vote accepted

I figured out the solution, the above code is actually correct, i was doing something else wrong due to which its not working. I corrected that and above code works

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.