在搜索了很多没有结果之后,我终于决定在这里问这个问题。
这是此 Facebook 博客文章的摘录: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
}
]
},
. . .
}
我使用的是上面链接的博客中的示例,但本质上,使用 FB Graph API 时的数据集是相同的。现在,我知道如何解析嵌套和所有内容JSONObjects
。JSONArrays
但我对这种数据一无所知。示例中的19和0由嵌套offset
标签确定,并随帖子而变化。我如何解释未知的 JSON 标签和代码以获取其中的信息?