Facebook Graph API get all comments

后端 未结 2 1281
终归单人心
终归单人心 2020-12-09 19:06

OK, so I\'ve put a Facebook social plugin comments box on my site, in which i specified a Facebook Fanpage, as the comments target.

Now what I want to do is get all

相关标签:
2条回答
  • 2020-12-09 19:47

    check this stackOverflow topic

    You need to call it from a secure request https and provide an access_token (19292868552_118464504835613 is Facebook post) :

    ( (19292868552) is the page or group id and (118464504835613) is the post id)

    https://graph.facebook.com/19292868552_118464504835613/comments?access_token=XXX
    

    EDIT: Added the object from the post document. Try clicking the comments connection and then remove the access_token and try and see the difference.

    0 讨论(0)
  • 2020-12-09 19:53

    The correct syntax to read comments from the Facebook Graph API is as follows:

    GET /{object-id}/comments

    So your URL would look like this:

    https://graph.facebook.com/xxx/comments

    Here's a live example that looks at comments on Coca-Cola's cover photo:

    http://graph.facebook.com/10152297032458306/comments

    You can read more about reading comments via the Graph API here.

    0 讨论(0)
提交回复
热议问题