0

このページを見ると:

http://www.rockit.it/BusyFamily/album/advice-for-your-next-failure/20334

いいねは42です。

Facebook APIを介していいねの数を取得しようとすると:

http://graph.facebook.com/?id=http://www.rockit.it/BusyFamily/album/advice-for-your-next-failure/20334

{
   "name": "Advice for your next failure - Busy Family",
   "is_published": true,
   "description": "Ascolta l'album su Rockit.",
   "about": "Ascolta l'album su Rockit.",
   "app_id": 162683947163843,
   "category": "Album",
   "id": "491498180869281",
   "link": "http://www.rockit.it/BusyFamily/album/advice-for-your-next-failure/20334",
   "likes": 2
}

いいねが2つあるのですが、なぜですか?

開いているグラフ データは次のとおりです。

<meta property="og:title" content="Advice for your next failure - Busy Family"/>
<meta property="og:type" content="album"/>
<meta property="og:url" content="http://www.rockit.it/BusyFamily/album/advice-for-your-next-failure/20334"/>
<meta property="og:site_name" content="Rockit.it"/>
<meta property="fb:admins" content="1747861721"/>
<meta property="fb:admins" content="763518965"/>
<meta property="fb:app_id" content="162683947163843"/>
<meta property="og:description" content="Ascolta l'album su Rockit. “Advice for your next failure”  è l’opera prima dei Busy Family, fresca band folk-rock di stanza tra Trieste e Belluno, nata dall’idea di..."/>
<meta property="og:image" content="http://www.rockit.it/thumbx200x200/copertine/20334.jpg"/>
4

1 に答える 1

3

いいねボタンの数字は、いいねの数だけではありません。これは、Like ボタンのドキュメントに記載されています。より詳細な統計情報については、url_like FQL テーブルを使用できます。

select normalized_url, share_count, like_count, comment_count, total_count, commentsbox_count, comments_fbid, click_count from link_stat WHERE url = 'http://www.rockit.it/BusyFamily/album/advice-for-your-next-failure/20334'

今の結果は

{
  "data": [
    {
      "normalized_url": "http://www.rockit.it/BusyFamily/album/advice-for-your-next-failure/20334", 
      "share_count": 16, 
      "like_count": 23, 
      "comment_count": 3, 
      "total_count": 42, 
      "commentsbox_count": 0, 
      "comments_fbid": 377087125706867, 
      "click_count": 0
    }
  ]
}

total_countいいねボタンに表示される数字

于 2012-09-24T15:32:35.647 に答える