I'm trying to figure out why a simple FQL query to get post insights is failing. I have manage_pages and read_insights permissions, and facebook won't give me any hints as to what I'm doing wrong:
$query1 = "SELECT post_id, message, created_time, attachment FROM stream WHERE actor_id='XXXXXXXX' and source_id='XXXXXXXXX' order by created_time";
$query2 = "SELECT object_id, metric, value FROM insights WHERE object_id IN (SELECT post_id FROM #query1) AND metric = 'post_impressions_unique' AND end_time=end_time_date('2011-11-28') AND period=period('lifetime')";
$queries = '{
"query1": "' . $query1 . '",
"query2": "' . $query2 . '"
}';
$data = $facebook->api_client->fql_multiquery($queries);
When I look at $data, I see many posts for the results of $query1, and I see nothing for the results of $query2.
I don't understand what I'm doing wrong. Can anyone help?
Thanks!
DW