我正在使用图表api来查询用户墙上的某些帖子。我还想展示这些帖子的所有评论。如果只有1或2条评论,则此功能正常。但是,如果有更多评论,Facebook将在用户墙上隐藏这些评论(使用“查看所有4条评论”按钮),但也会在图表api输出中隐藏。
See this json from facebook:
"data": [
{
"id": "100053501911069367_135170016353556700_843534178",
"from": {
"name": "Person",
"id": "10523534512985"
},
"message": "test?",
"created_time": "2011-03-25T13:10:27+0000"
},
{
"id": "100001914561069367_13517001645645556700_8446454289",
"from": {
"name": "Person1",
"id": "65051674564504"
},
"message": "test!",
"created_time": "2011-03-25T13:47:08+0000"
}
],
"count": 4
}
您会看到有4条评论,但它只显示数据中的最后两条评论。
任何人都有线索?
日Thnx!