After having searched a lot with no result, I finally deciding to ask this question here.
This is an excerpt from this Facebook blog post: https://developers.facebook.com/blog/post/592/
{
. . .
"story": "Dhiren Patel likes Marmot.",
"story_tags": {
"19": [
{
"id": 101961456910,
"name": "Marmot",
"offset": 19,
"length": 6
}
],
"0": [
{
"id": 1207059,
"name": "Dhiren Patel",
"offset": 0,
"length": 12
}
]
},
. . .
}
I am using the example above from the blog linked but essentially, the data set when using the FB Graph API is the same. Now, I know how to parse JSONObjects as well JSONArrays with nesting and all. But I am clueless with this kind of data. 19 and 0 in the example are determined by the nested offset tag and changes from post to post. How can I account for unknown JSON tags and code to get the information within them?