Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $fields = array(
  2. 'results',
  3. 'reach',
  4. 'actions:like',
  5. 'video_play_actions:video_view',
  6. 'video_avg_time_watched_actions:video_view',
  7. 'unique_actions:link_click',
  8. );
  9. var_dump($fields);
  10. $params = array(
  11. 'level' => 'campaign',
  12. 'filtering' => array(array('field' => 'campaign.delivery_info','operator' => 'IN','value' => array('active'))),
  13. 'breakdowns' => array(),
  14. 'time_range' => array('since' => '2017-05-19','until' => '2019-05-19'),
  15. );
  16. echo json_encode((new AdAccount($ad_account_id))->getInsights(
  17. $fields,
  18. $params
  19. )->getResponse()->getContent(), JSON_PRETTY_PRINT);
  20.  
  21. 'filtering' => array(array('field' => 'delivery_info','operator' => 'IN','value' => array('active')))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement