How to get whole Facebook friends list from api
Is there a way to get the whole Facebook friends list using an api! I've tried a lot of thing and here's my shot: FacebookClient f = new FacebookClient(access_token); f.IsSecureConnection = true; dynamic friendlist = await f.GetTaskAsync(@"https://graph.facebook.com/me/friendlists?access_token="+access_token); t.Text = JsonConvert.SerializeObject(friendlist);…