I'm trying to get a specific post (by ID) with the C# Facebook-SKD-Client.
The Load-Method to load the 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 as expected the latest 10 Posts from the Posts of the Site.
Is there a way to load only post X with the ID Y_Z?