1

具体的には、FB ページの like_stat 情報にアクセスしようとしていますfacebook.com/womenmakemovies。手動でページに移動すると、[いいね!] タイルに、そのページに対する 14,000 件を超えるいいね! が表示されます。

FB API を使用してこのデータにアクセスするために、次のクエリを実行しました。 SELECT url, normalized_url, share_count, like_count, comment_count, total_count, commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url="facebook.com/womenmakemovies"

選択されたすべての「カウント」が値 0 で返されました。

このすべてのデータを単一のクエリで収集する他の方法や、適切なデータを取得するために現在のクエリに加えることができる変更はありますか?

補足: 他のページでもこの問題が発生していますが、統計を取得しているほとんどのページは、上記のクエリで正しいデータを返しています。

4

2 に答える 2

2

いいね数の場合は、次のように使用できます。https://graph.facebook.com/womenmakemovies

{
   "name": "Women Make Movies",
   "is_published": true,
   "website": "www.wmm.com\nwww.youtube.com/wmmnyc",
   "username": "womenmakemovies",
   "founded": "1972",
   "company_overview": "Women Make Movies is the world's leading distributor of independent films by and about women, with a focus on cutting-edge documentaries that give depth to today's headlines, as well as artistically and intellectually challenging works in all genres. Our films are showcased in prestigious exhibition venues and festivals both nationally and internationally. The Women Make Movies collection of more than 500 films and videotapes is also used by thousands of educational, community and cultural organizations annually.\n\n\n\n",
   "mission": "http://www.wmm.com/about/general_info.shtml",
   "products": "DISTRIBUTION SERVICE\nhttp://www.wmm.com/filmcatalog/new_releases.shtml \n\nPRODUCTION ASSISTANCE PROGRAM\nhttp://www.wmm.com/filmmakers/production_assistance.shtml\n \n\n",
   "about": "www.wmm.com youtube.com/wmmnyc twitter.com/womenmakemovies",
   "location": {
      "street": "462 broadway, ste 500",
      "city": "New York",
      "state": "NY",
      "country": "United States",
      "zip": "10013",
      "latitude": 40.72103,
      "longitude": -74.00049
   },
   "general_info": "WMM Funders:\n\nNew York State Council on the Arts\nNational Endowment for the Arts\nNew York City Department of Cultural Affairs\nThe Educational Foundation of America\nThe Little Family Foundation\nThe Weinstein Company\nThe Friends of Women Make Movies",
   "checkins": 6,
   "were_here_count": 33,
   "talking_about_count": 142,
   "category": "Non-profit organization",
   "id": "6574279597",
   "link": "https://www.facebook.com/womenmakemovies",
   "likes": 14704,
   "cover": {
      "cover_id": "10150730604649598",
      "source": "http://sphotos-f.ak.fbcdn.net/hphotos-ak-ash3/s720x720/536830_10150730604649598_87318500_n.jpg",
      "offset_y": 74
   }
}
于 2012-11-08T00:38:37.980 に答える
2

で Facebook ページをクエリすることはできませんlink_statページまたはインサイトテーブルのいずれかを使用する必要があります。

これにより、ページの現在のいいねの数が取得されます。

 SELECT name, fan_count, new_like_count FROM page WHERE username="womenmakemovies"
于 2012-11-07T19:56:43.450 に答える