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 started working on gathering information from Facebook Insights on DAU/WAU/MAU figures of apps. Thing is that analyzing the data turns out that on certain days FB Insights returns no values for these 3 figures for any app you query about. For example, if you query FB insights for the date "2012-07-29" it will return no values for MAU, DAU, WAU figures FOR any app you will query. I had seen this happen more or less once a month.

Had anyone experienced with this? Is this a Bug or is there a certain reason why FB shows zero DAU/MAU numbers for certain days?

See below examples querying Zynga's "The Ville" game:

 >>> minifb.call('facebook.fql.query', 'xxxxxxxxxxx', 'yyyyyyy', query="SELECT metric, value FROM insights WHERE object_id=104707979641590 AND metric='application_active_users' AND end_time=end_time_date('2012-07-27') AND period=period('week')")

[{u'metric': u'application_active_users', u'value': 24739873}]

 >>> minifb.call('facebook.fql.query', 'xxxxxxxxxxx', 'yyyyyyy', query="SELECT metric, value FROM insights WHERE object_id=104707979641590 AND metric='application_active_users' AND end_time=end_time_date('2012-07-29') AND period=period('week')")

[]

Notice how the second call querying data for "2012-07-29" returns an empty list. Why is that?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.