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?