I am fed up investigate how to convert Facebook.Json stuff to some C# classes.
Any clue if there is some open source ready-to-use solution for all entities of Facebook?
Just to parse posts to some List<Post> or something like that??
Thank you!
dynamic p = (IDictionary<string, object>)fb.Get(userID + "/posts");
foreach (dynamic value in p.Values)
{
Post post = new Post();
foreach (dynamic item in value)
Create your own set of objects and write a custom deserializer?
Do FB not have a C# SDK?