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.