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

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -