Getting back onto facebook c# sdk and always find some changes here and there. GOt about accessing an access token properly and now i want to count number of friends for user.
Here is my existing code.
string accessToken = ViewState["accessToken"].ToString();
Facebook.FacebookClient fb = new FacebookClient(accessToken);
var me = fb.Get("/me/friends");
Now the me gives me the friend list in json format which has two keys one being "data" and other being "paging".
How do i proceed to get all friends and at least count of friends?
Thanks for the inputs