Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am interested in returning back a few metrics from insights but i am having difficulty getting results from FQL.

I need to get back the following. page impressions/likes/shares posts impressions/likes/share/comments

For post impressions

fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='post_impressions_unique' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') 

For page impressions

fql?q=SELECT metric, value FROM insights WHERE object_id=#### AND metric='page_impressions' AND end_time=end_time_date('2011-10-30') AND period=period('lifetime') 

i get back empty data sets:

{
  "data": [
  ]
}

What am i doing wrong?

share|improve this question
please let me know if i can provide further information to help diagnose this issue – Jason Ragsdale Nov 1 '11 at 18:34

1 Answer

I had the same problem at first. According to the documentation, 'page_impressions' and 'page_impressions_unique' can only take the periods of 'day', 'week', and 'days_28'. If that doesn't fix the problem, try changing to a different end date (which was my problem).

share|improve this answer
How was the date the issue? What did you have to change it to for the period you were looking for? – Jason Ragsdale Nov 3 '11 at 17:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.