2012-12-21 68 views
1

我在試圖獲得一個FQL查詢,它將檢索新的fanpage喜歡「今天」。這意味着它必須每天自動更新。今天的FQL page_fan_adds

進出口使用下面的代碼:值:

SELECT metric, value FROM insights WHERE object_id=481749428508329 AND metric='page_fan_adds' AND end_time=(??????) AND period=86400 

我已經通過使用圖形API和複製粘貼的ID檢索到的OBJECT_ID。它適用於以下頁面:www.iq-leads.com/IQLeads

我似乎無法弄清楚如何才能獲得今天添加的喜歡數。我試着做了很指定日期:

SELECT metric, value FROM insights WHERE object_id=481749428508329 AND metric='page_fan_adds' AND end_time=end_time_date('2012-11-26') AND period=86400 

,其結果是:

{ 
    "data": [ 
    ] 
} 

我不知道查詢的哪一部分是錯誤的,任何人可以幫助我嗎?

回答

0

對我來說也是一樣,我無法讓它工作。來自Facebook Insights documentation的第二個示例不起作用。我想這是不正常的,它應該需要Facebook的關注。

反正你有一個選擇,它看起來像通過圖形API的工作: /YOUR_PAGE_ID/insights/page_fan_adds_unique/day

你會得到結果以這樣的方式,該信息由聚集成團的三天

{ 
    "data": [ 
    { 
     "id": "YOUR_PAGE_ID/insights/page_fan_adds_unique/day", 
     "name": "page_fan_adds_unique", 
     "period": "day", 
     "values": [ 
     { 
      "value": 0, 
      "end_time": "2012-12-17T08:00:00+0000" 
     }, 
     { 
      "value": 0, 
      "end_time": "2012-12-18T08:00:00+0000" 
     }, 
     { 
      "value": 1, 
      "end_time": "2012-12-19T08:00:00+0000" 
     } 
     ], 
     "title": "Daily New Likes", 
     "description": "Daily The number of new people who have liked your Page (Unique Users)" 
    } 
    ], 
    "paging": { 
    "previous": "https://graph.facebook.com/YOUR_PAGE_ID/insights/page_fan_adds_unique/day?since=1355425264&until=1355684464", 
    "next": "https://graph.facebook.com/YOUR_PAGE_ID/insights/page_fan_adds_unique/day?since=1355943664&until=1356202864" 
    } 
} 

(我知道,我的網頁是不是真的出名)

不要忘記使用read_insights許可。