如何获取特定网址的Facebook分享计数。

时间:2015-03-12 13:02:11

标签: facebook facebook-graph-api

这是我在Facebook上分享过两次的网址 http://dev.woofyz.com/status/dexter/467这就是我正在使用的API http://graph.facebook.com/http://dev.woofyz.com/status/dexter/467但它只返回id不共享

2 个答案:

答案 0 :(得分:0)

它的正确链接是

https://graph.facebook.com/v2.2/http://dev.woofyz.com/status/dexter/467%22

但您必须提供访问令牌才能查看,如果您想查看示例,请使用Graph API Explorer并使用生成的访问代码输入您的链接。

您会看到像这样的对象

{
  "og_object": {
    "id": "888000351256371",
    "title": "Video Youtube post",
    "type": "website",
    "updated_time": "2015-03-12T13:11:33+0000",
    "url": "http://dev.woofyz.com/status/dexter/467"
  },
  "share": {
    "comment_count": 0,
    "share_count": 2
  },
  "id": "http://dev.woofyz.com/status/dexter/467""
}

答案 1 :(得分:0)

根据

的文件

正确的电话会是

GET https://graph.facebook.com/?access_token={access_token}&id=http://dev.woofyz.com/status/dexter/467

其中{access_token}可以是任何访问令牌。