从 Facebook 页面获取帖子的评论
当我尝试使用 获取评论时,我试图从粉丝页面、帖子中获取帖子评论http://developers.facebook.com/tools/explorer 在评论部分我刚刚得到这个结果:
'type': 'video',
'created_time': '2011-10-20T16:00:47+0000',
'updated_time': '2011-10-20T16:00:47+0000',
'likes': {
'data': [
{
'name': 'Ignacio Lopez',
'id': '1368746018'
}
],
'count': 12522
},
'comments': {
'count': 495
}
}
但它可以得到评论,我可以得到评论的计数器,你能帮我弄清楚这个吗问题 ? ,我用PHP编写了一些程序来获取帖子评论数据,就像这样
I'm trying to get comments for posts from a fan page, from posts , when I try to get comments using http://developers.facebook.com/tools/explorer in the comment part I just get this result:
'type': 'video',
'created_time': '2011-10-20T16:00:47+0000',
'updated_time': '2011-10-20T16:00:47+0000',
'likes': {
'data': [
{
'name': 'Ignacio Lopez',
'id': '1368746018'
}
],
'count': 12522
},
'comments': {
'count': 495
}
}
but it could get the comments , I can just get the comment's counter , could you help me to figure out this problem ? , I wrote some program in PHP to get the post comments data, like this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Graph API Video object 文档,视频上有一个“评论”连接包括评论;您是否尝试过访问
/{video id}/comments
?According to the Graph API Video object documentation there's a 'comments' connection on videos with the comments included; have you tried accessing
/{video id}/comments
?