How does Facebook Graph API Pagination works and how to iterate facebook user feed with it?
问题 I have a facebook Graph API call to get a facebook users feed: dynamic myFeed = await fb.GetTaskAsync( ("me/feed?fields=id,from {{id, name, picture{{url}} }},story,picture,link,name,description," + "message,type,created_time,likes,comments") .GraphAPICall(appsecret_proof)); The above returns a number of the latest user posts in a while say 21 or maybe 22 posts but not the complete list of user posts. I searched for a way to iterate through a users feed using facebook pagination and I ended up