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'm using the following snippet to request the friendslist of the authorized user:

System.out.println("AT: " + facebook.getAccessToken());
String response = facebook.request("me/friends?fields=first_name,last_name,id,gender");

The response I get:

{"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException","code":2500}}

I'm printing the accesstoken, this gives me a valid token. Also, getAccessExpires() returns a time in the future. When I request the url "me/friends" without any params, I get the expected (but with less data) friends list without errors.

How can I solve this?

share|improve this question

1 Answer

up vote 1 down vote accepted

String response = facebook.request("me/friends?fields=first_name,last_name,id,gender");

That is the incorrect way to use facebook.request. I'm assuming you're not using the beta Android SDK so the correct way to do this is to do the following:

Facebook facebook = new Facebook(YOUR_APP_ID);
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook);
Bundle params = new Bundle();
params.put("fields", "first_name, last_name, id, gender");
mAsyncRunner.request("me/friends", params, new RequestListener() {
    // get response here
    ....
});

Hope this helps.

share|improve this answer
I actually chose not to use the AsyncFacebookRunner, using my own AsyncTask implementation. However, using the params Bundle instead of the plain stringurl solved the problem. Thanks for the hint in the right direction! – Niek Dec 2 '12 at 13:53

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.