I am trying to get facebook wall but I am having issues with JSON Nested structure.
following is my code so far
var wall = (JsonObject)fb.Get("me/feed");
List<FBWall> myWall = new List<FBWall>();
foreach (var obj in (JsonArray)wall["data"])
{
FBWall myWall = new Wall();
myWall.Id = (string)(((JsonObject)obj)["id"]);
}
actual string in wall is coming something like this
{"data":[{"id":"576376893_10150590188751894","from":{"name":"Afnan Bashir","id":"576376893"},"story":"\"how are you man??? \" on Xain Ul-Abiddin's timeline."........ and so on
now I have got data but when i do (as it should come like this because main file contains other json arrays)
(((JsonObject)obj)["from"]) I get {"name":"Afnan Bashir","id":"576376893"}
now how would you write in foreach to get everything without going to another foreach. I was thinking for some way may be with Linq