Facebook Graph API for App Insights Not Returning Latest Results -


i'm trying query in facebook graph api , it's not returning latest results. it's giving me data dates 3 days (april 11th), , can't make return results include last 2 days (12th or 13th). when explicitly set since , until parameters last 2 days, returns no data.

=== query   curl -i -x \    "https://graph.facebook.com/v2.8/266492440452954/app_insights/facebook_features_daily_active_users?access_token=<access token sanitized>" === access token info   {     "perms": [       "user_birthday",       "user_about_me",       "email",       "read_insights",       "read_audience_network_insights",       "manage_pages",       "public_profile"     ],     "user_id": "10101060008646191",     "app_id": 145634995501895   }  === response   {     "data": [       {         "time": "2017-04-08t08:00:00+0000",         "value": "0"       },       {         "time": "2017-04-09t08:00:00+0000",         "value": "0"       },       {         "time": "2017-04-10t08:00:00+0000",         "value": "1"       },       {         "time": "2017-04-11t08:00:00+0000",         "value": "2"       }     ],     "__debug__": {}   }  === debug information graph api explorer - https://developers.facebook.com/tools/explorer/?method=get&path=266492440452954%2fapp_insights%2ffacebook_features_daily_active_users&version=v2.8   

any ideas on might issue here?

from looks of it, seems stats day behind. it's possible it's due timezone difference, far haven't been able definitively confirm case.


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -