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 tried the below query

     SELECT metric, value FROM insights WHERE object_id=3232322 AND     
     metric='application_active_users' AND end_time=end_time_date('2011-12-12') AND    
     period=period('day')

I've got read_insights permissions,object_id,i'm passing the page id.

This insights,i create as an facebook app ,to this i'm passing the app access token.

I get an empty array as output.Am,i missing some thing?

share|improve this question
Without wanting to ask a silly question: you are an admin of the page, right? – Igy Dec 13 '11 at 10:33

2 Answers

I don't think it is an authentication issue because it would return an error (authentication error) This might be a known issue with end_time; check bug already reported to facebook. I have posted a work around there too that works. http://developers.facebook.com/bugs/232510993491615?browse=search_4f08c675cce9d2265724293

share|improve this answer

I have the same query like you and my object returned is empty too. there is no permission or authwentication problem. this end_time column has a bug I agree because for in just one try I used end_time='3213123123' (it is a kind of unix time) it worked but then when I changed it to end_time_date('2012-1-12') it didnt work and also not working too.

my queries are:

FB.api('fql', { q: str });

FB.Data.query(str);

FB.api({ method: 'fql.query', query: 'SELECT metric, value FROM Insights WHERE object_id =\'135340989857162\' and end_time=end_time_date(\'2012-1-12\') AND metric=\'application_active_users\' AND period=period(\'day\')', format: 'json' }, function(response) { rowsvaluesdays = response; });

where str is my query. All three returns empty data

share|improve this answer

Your Answer

 
discard

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