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 started making the upgrade to Facebook SDK 3.0 for Android. I've managed to open an active session (using the Session.openActiveSession(...) method) and get the current user's info (using the Request.executeMeRequestAsync(...) method). However! When I try to get the current user's list of friends as follows...

Request.newMyFriendsRequest(
    Session.getActiveSession(),
    new Request.GraphUserListCallback()
    {
      @Override
      public void onCompleted(List<GraphUser> users, Response response)
      {
        // never called
      }
    });

... the onCompleted(...) callback is never called and my user is left hanging, forever. I've checked and my access token is valid and I'm pretty sure no extra permissions are needed to get the current user's list of friends. Any ideas anybody? I'm stuck and Facebook developers bug-reporting is disabled!

share|improve this question

1 Answer

up vote 1 down vote accepted

Calling Request.newMyFriendsRequest just creates the request, it doesn't execute it.

You need to do something like:

Request request = Request.newMyFriendsRequest(...);
request.executeAsync();

or just

Request.newMyFriendsRequest(...).executeAsync();
share|improve this answer
Yup, my bad, didn't realise there were two methods - Request.newMyFriendsRequest(...) and Request.executeMyFriendsRequestAsnc(...). Thanks Ming Li. Appreciate it. – Adil Hussain Feb 1 at 8:56

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.