1

我正在尝试访问 FB 页面的 like_stat 信息,特别是facebook.com/womenmakemovies. 手动导航到页面后,“喜欢”磁贴显示该页面的点赞数超过 14K。

为了使用 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

您不能使用 查询 Facebook 页面link_stat。您必须使用页面见解表。

这将为您提供页面当前的喜欢数量:

 SELECT name, fan_count, new_like_count FROM page WHERE username="womenmakemovies"
于 2012-11-07T19:56:43.450 回答
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 回答