我正在尝试从网站类型的开放图形对象中获取评论。
我正在官方的Graph API资源管理器页面https://developers.facebook.com/tools/explorer
上测试所有这些内容首先,我将页面中的URL粘贴到其页面上。我得到这样的东西:
{
"og_object": {
"id": "id_of_the_object",
"description": "some_description",
"title": "some_title",
"type": "website",
"updated_time": "2017-03-30T08:35:44+0000"
},
"share": {
"comment_count": 5,
"share_count": 31
},
"id": "the_pasted_link"
}
正如您所看到的,它声明对于此OGObject有5条注释。
我使用 id_of_the_object 通过在资源管理器页面上请求以下内容来收集评论:
id_of_the_object /评论
我得到一个没有评论的空数据对象:
{
"data": [
]
}
但是当我对类型文章的OGObject发出相同的请求时,评论就在那里:
{
"data": [
{
"created_time": "2017-03-30T12:21:48+0000",
"from": {
"name": "user",
"id": "user_id"
},
"message": "some_message",
"id": "message_id"
}
],
"paging": {
"cursors": {
"before": "blabla",
"after": "blabla"
}
}
}
所以主要问题是,我可以从网站类型的OGObject获取评论吗?因为它显然不像类型文章那样工作。