Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

If you have a JSONObject that represents the "story_tags" scope above, you should be able to iterate through the individual tags with:

for (String key : storyTagsJSON.keys()) {
    JSONObject tagJSON = storyTagsJSON.optJSONObject(key);
    ...
share|improve this answer
Can you explain this just a tad please? Will this take care of the variables? The 19 and 0 in the example – IceMAN Oct 19 '12 at 5:38
Yes. Unless I am misunderstanding your question, in the example you gave, the first time through the loop, key would be "19". The second time through key would be "0". And I missed that the contents are an array, so my second line should have used JSONArray/optJSONArray instead of JSONObject/optJSONObject. – rightparen Oct 20 '12 at 15:33
Not quite actually. When I mean variable, I mean that the 19 and 0 can be just about anything. In one post they might even be, for instance, say 29, 16 and 2. The tags under the story_tags can change from post to post and therefore, they cannot be accounted for at run time. – IceMAN Oct 20 '12 at 15:41
Right. Calling .keys() on the "story_tags" JSONObject gives you the list of property names of that JSONObject. In your first example it would give you a list containing "19" and "0", and in your other example it would give you a list containing "29", "16", and "2". – rightparen Oct 20 '12 at 16:03
Sorry for the late reply. I will give that suggestion a try and report back. – IceMAN Oct 21 '12 at 4:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.