我需要访问给定日期范围内的Facebook页面分析数据,如下面显示的公共页面,而无法访问页面数据分析。
使用FQL我今天可以获得的是使用页面ID的粉丝数。
SELECT name,fan_count,description FROM page WHERE page_id = xxxxxxxxx
Fql查询或php代码会有所帮助。
此报告https://app.simplymeasured.com/viewer/h9p8rvrec5qwfsqjig2rrc6nwcuxq6ic6ykvewkd/455130
或像这样一个更简单的报告。
http://www.zuumsocial.com/sites/all/themes/sooper_synopsis/custom/images/hp/screen-leaderboard.png
答案 0 :(得分:3)
API支持您自己的网页和应用的历史数据,这是clearly documented
获得read_insights
Permission后,您可以使用Graph API或FQL执行此操作
例如,要检索上个月每天的相似计数,此Graph API洞察查询会显示结果:
/[PAGE ID HERE]/insights/page_fans/lifetime?since=1 month ago
我的一个页面的结果是:
{
"data": [
{
"id": "255463667838002/insights/page_fans/lifetime",
"name": "page_fans",
"period": "lifetime",
"values": [
{
"value": 52,
"end_time": "2012-05-21T07:00:00+0000"
},
{
"value": 52,
"end_time": "2012-05-22T07:00:00+0000"
},
{
"value": 53,
"end_time": "2012-05-23T07:00:00+0000"
},
{
"value": 53,
"end_time": "2012-05-24T07:00:00+0000"
},
{
"value": 53,
"end_time": "2012-05-25T07:00:00+0000"
},
{
"value": 53,
"end_time": "2012-05-26T07:00:00+0000"
},
// Snipped more of the same
],
"title": "Lifetime Total Likes",
"description": "Lifetime The total number of people who have liked your Page. (Unique Users)"
}
如果您询问其他人的网页或应用,答案是否定的 - 您需要使用已公开提供信息的第三方服务(即投票服务)