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've integrated my app with facebook login. This is my code:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    Session.openActiveSession(this, true, new Session.StatusCallback() {

      public void call(Session session, SessionState state, Exception exception) {
        if (session.isOpened()) {


          Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {


            public void onCompleted(GraphUser user, Response response) {
              if (user != null) {
                TextView t = (TextView) findViewById(R.id.text);
                t.setText("Hello " + user.getName() + "!");
              }
            }
          });
        }
      }
    });
  }

  public void onActivityResult(int requestCode, int resultCode, Intent data) {
      super.onActivityResult(requestCode, resultCode, data);
      Session.getActiveSession().onActivityResult(this, requestCode, resultCode, data);
  }`

in device emulator this code works, but when i try it in my device the app get me this message: so, when i click ok, the textView is not setted with the name of user. Why?

share|improve this question
provablackout.altervista.org/img.jpg (message) – user2062413 Feb 25 at 15:02
is your code placed inside Fragment or Activity? – user711058 Feb 25 at 15:43
in my activity! – user2062413 Feb 25 at 15:48
oh, I had similar issue because onActivityResult() was never called in my Fragment. Otherwise your code seems fine. Put @Override before onActivityResult() and check if it is really called. If this won't help, I can give you a bit different example from my project that worked for me both on emulator and on device. – user711058 Feb 25 at 15:59
@user711058 Can you post your code pls? – user2062413 Feb 25 at 16:16
show 1 more comment

1 Answer

I need extra permissions for reading, so my code looks like this:

    OpenRequest req = new OpenRequest(getActivity()).setCallback(new Session.StatusCallback() {
        @Override
        public void call(Session session, SessionState state, Exception exception) {                
            if (session.isOpened()) {
                Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {
                    @Override
                    public void onCompleted(GraphUser user, Response response) {
                        if (user != null) {
                            //do login stuff
                        } else {
                            //show error message

                        }
                    }
                });
            } else {
                if (exception != null) {
                    //show error
                }
            }
        }
    }); 
    req.setPermissions(Arrays.asList("email", "user_location"));
    Session session = new Builder(getActivity()).build();
    Session.setActiveSession(session);
    session.openForRead(req);

This is inside Fragment, so you can replace getActivity() with this. With correct onActivityResult() method I have no problems with FB.

share|improve this answer
when i replace getActivity() with this i have this error: the method setcallback is undefined for the type MainActivity – user2062413 Feb 25 at 18:15
check your brackets. Should be: OpenRequest req = new OpenRequest(this).setCallback(new Session.StatusCallback() { ... – user711058 Feb 25 at 21:51
The problem is not solved. In emulator works but not in my device. Do u have another solution? – user2062413 Feb 26 at 17:44
Unfortunately, no. You can check for Facebook replies, though. Put if (response.getError() != null) Log.d("error!", response.getError().getErrorMessage()); inside call() callback and also log every session state change. If it is your test project, you can also place the full source code somewhere, I can check it later. – user711058 Feb 27 at 9:29

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.