我真的很困惑,因为我对两个查询的结果不一致。
第一个我能够获得该页面的所有帖子:
https://graph.facebook.com/v2.5/205309889562612/feed?fields=id%2Cfrom%7Bid%2Cname%7D%2Cmessage%2Ccreated_time%2Ctype%2Clink%2Cname%2Ccomments.summary(true).limit(0)%2Clikes.summary(true).limit(0)
在结果中,我可以清楚地看到一个id = 235109036656557_918476324912628的帖子
{
"id": "235109036656557_918476324912628",
"from": {
"id": "235109036656557",
"name": "Fumettologica"
},
"message": "La copertina del nuovo numero di Linus, disegnata da Manuele Fior e dedicata a Parigi.",
"created_time": "2015-11-27T14:37:41+0000",
"type": "link",
"link": "http://bit.ly/1NSfOus",
"name": "La copertina di Linus di dicembre, disegnata da Manuele Fior"
}
但是这个查询(具有相同的访问令牌):
https://graph.facebook.com/v2.5/235109036656557_918476324912628
给这个:
{
"error": {
"message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100,
"fbtrace_id": "D8ZFtKvMUTc"
}
}
起初我认为这可能是一个许可问题,但我能够通过第一个查询获取详细信息的事实让我感到疯狂......对它的概念有什么看法?