How can I get 'more posts' or 'other posts' using Facebook C# GRAPH API? -



How can I get 'more posts' or 'other posts' using Facebook C# GRAPH API? -

i have question.

i think facebook c# graph api supports method posts or messages.

example)

jsonobject me = fbapi.get("/me/feed?access_token=" + this.app_access_token);

is there additional parameter previous posts or messages?

if it's not possible, other api ( php, javascript ... ) supporting this?

-jack-

i'm not exclusively familiar c# sdk, if follows convention of other graph api compatible sdks should able this:

jsonobject me = fbapi.get("/me/feed?limit=25&since=1311007970&access_token=" + this.app_access_token)

the limit parameter restrict number of posts retrieved @ 1 time , since parameter unix timestamp allow query posts farther in time. check out paging section on page more information:

https://developers.facebook.com/docs/reference/api/#reading

facebook-graph-api facebook-c#-sdk

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -