我使用Graph API从粉丝页面检索相册,我知道是否可以在“评论框”中显示我网站上的照片中的相同评论作为用户在facebook上发表的评论(以避免来自同一张照片的色散)
如果我在http://developers.facebook.com/docs/reference/plugins/comments/上的图表API中设置了“链接”网址,则不会检索任何评论。
Thx!
答案 0 :(得分:1)
您可以通过调用GraphAPI URL上的/ comments端点来获取对图像的注释。您可以在documentation directly。
中获取更多详细信息例如:https://graph.facebook.com/20531316728/comments
然后,您将收到一些可以在您的网站上显示的评论。回报看起来与此相似:
{
"data": [
{
"id": "{ID}_{ID}",
"from": {
"name": "GAbii SUn",
"id": "{ID}"
},
"message": "bno eso creo y no se si estan en ese restaurante",
"created_time": "2011-04-28T13:42:45+0000"
},
],
"paging": {
"next": "https://graph.facebook.com/{ID}/comments?format=json&limit=25&offset=25"
}
}
注意:我按照预期剥离了ID,以保护用户的隐私。