在拥有的页面上获取评论
Get comment on owned page
我在 Facebook 上拥有一个页面。我的目的是我想收集所有的评论,用户在我的页面中的回复以及评论的线程 ID。
我已经阅读了 Facebook 的 Graph API 的文档,它描述了:
Page owned Comments and Replies — For any comments or replies owned by (on) a Page, you must use a Page access token if you want User information to be included in the response
我很困惑,我有访问令牌,但 API 端点看起来像:
GET /v4.0/{comment-id} HTTP/1.1
这是否意味着我必须指定一个 comment-id 才能获取它?请你帮助我。谢谢
这将是正确的端点:GET /v4.0/{post-id}/comments HTTP/1.1
(https://developers.facebook.com/docs/graph-api/reference/post/)
子评论:GET /v4.0/{comment-id}/comments HTTP/1.1
(Facebook graph API: get the "subcomments" in a tree of a discussion)
我在 Facebook 上拥有一个页面。我的目的是我想收集所有的评论,用户在我的页面中的回复以及评论的线程 ID。
我已经阅读了 Facebook 的 Graph API 的文档,它描述了:
Page owned Comments and Replies — For any comments or replies owned by (on) a Page, you must use a Page access token if you want User information to be included in the response
我很困惑,我有访问令牌,但 API 端点看起来像:
GET /v4.0/{comment-id} HTTP/1.1
这是否意味着我必须指定一个 comment-id 才能获取它?请你帮助我。谢谢
这将是正确的端点:GET /v4.0/{post-id}/comments HTTP/1.1
(https://developers.facebook.com/docs/graph-api/reference/post/)
子评论:GET /v4.0/{comment-id}/comments HTTP/1.1
(Facebook graph API: get the "subcomments" in a tree of a discussion)