c# - How get specific Post from FacebookClient by Post-ID -


i'm trying specific post (by id) c# facebook-skd-client.

the load-method load x last entries works fine.

var client = new facebookclient(token); dynamic parameters = new expandoobject(); parameters.limit = 10; dynamic results = client.get("hslu.ch/posts/", parameters); 

returns expected latest 10 posts posts of site.

is there way load post x id y_z?

how this:

var client = new facebookclient(token); dynamic results = client.get("y_z", new expandoobject()); 

this equivalent of request https://graph.facebook.com/{version}/{node-id}. more info in docs


Comments

Popular posts from this blog

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -