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?