Facebook Ads API - Actions by conversions returns total actions -
i'm trying info specific user's ad campaigns using async request /reportstats
. when add fields request, fine. when remove both total_actions
, total_unique_actions
, fields actions_28d_click_by_convs
, unique_actions_28d_click_by_convs
return totals instead of object breakdown of totals per action. add either total_actions
or total_unique_actions
list, 2 by_convs
fields return expected object.
with 'total_actions':
{ campaign_name: '...', campaign_group_name: '...', clicks: 337, reach: 80564, [...] total_actions: 335, actions_28d_click_by_convs: [object], unique_actions_28d_click_by_convs: [object] }
without 'total_actions':
{ campaign_name: '...', campaign_group_name: '...', clicks: 337, reach: 80564, [...] actions_28d_click_by_convs: 335, unique_actions_28d_click_by_convs: 335 }
another weird thing: summary of response show object totals (of campaigns combined) per action (e.g. post_likes).
i've tried 2 different users , 2 different apps, , both show same weird thing. (temporarily) solved requesting total_actions
.
anyone else has same problem and/or knows cause?
thanks!
Comments
Post a Comment