I was trying to get data of wall posts but failed .I am using facebook sdk at codeplex http://facebooksdk.codeplex.com/documentation they have given code to get posts but when i replace my token and change
dynamic result = app.Get("19292868552_118464504835613");
to
dynamic result = app.Get("/me/feed");
the line string fromName = result.from.name;
throws exception that from is not present in result.
then i added some break point and watched them here is picture
you see the difference in two strings named me and result.
me works fine and i can extract any thing i want but result dose not help i have noticed that there is "|" in the string dose that cause the problem.