I have Facebook page which I sell there sport clothes.
Each day I would like to see the following parameters from the traffic:
- Timezone of the device
- Device platform - iOS,Android,PC
- Event_log_time - timestamp at which the event is logged
I make everyday POST request to https://graph.facebook.com/v2.6/[Application FBID]/analytics_app_events_exports
with the following data:
access_token = {my access token}
start_ts = timestamp, begining of the day
end_ts = timestamp, end of the day
Then, after 5 hours I make get request to https://graph.facebook.com/V2.6/[Export FBID]?access_token={app access token}.
The response I get is:
"id": "##############",
"start_ts":"***",
"end_ts": "***",
"status": "SCHEDULED",
"column_names":[***],
"event_param_names":[{"event_name":[Event name]',"param_names":[Custom param names]}]
I have noticed that only after 2 Days the respone I get for the get request to https://graph.facebook.com/V2.6/[Export FBID]?access_token={app access token}
the status is COMPLETED.
My question is why it takes to long? according to your API it should take about 1-2 hours.
우리는 당신이 무엇을하고 있는지 알지 못해 어떻게 잘못 됐는지 알 수 있습니까? – WizKid