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 have a bit of code to retrieve the members in a friendlist based on ID.

    public ActionResult GetFriendsInList(string friendListID)
    {
        var client = new FacebookClient(AccessToken);
        dynamic result = client.Get("/" + friendListID + "/members?");
        JavaScriptSerializer jss = new JavaScriptSerializer();
        var friends = jss.Deserialize<Friends>(result.ToString());
        return Json(friends, JsonRequestBehavior.AllowGet);
    }

It works for about 2/3 of my friendlists and the other 1/3 don't return any results. For the ids that don't return result I am able to see there is data in those lists by going to the graph url:

https://graph.facebook.com/{friendListID}/members?access_token={accessToken}

I'm just unsure what to look at since it works for some of the IDs.

share|improve this question
Just a thought, maybe there is a strange character in someones name that is causing it to fail. – DROP table users Nov 13 '12 at 18:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.