使用fb广告见解API

时间:2018-10-09 09:26:19

标签: python facebook facebook-ads-api facebook-marketing-api

我的Facebook ad_insights API面临一个非常琐碎的问题。 我在Facebook上有许多竞选活动。它们针对不同的事件进行了优化,例如“购买”,“发起结帐”,“添加到购物车”。

当我请求终点时,得到的响应与此类似,

{
  "data": [
    {
      "actions": [
        {
          "action_type": "link_click",
          "value": 19
        },
        {
          "action_type": "offsite_conversion.fb_pixel_purchase",
          "value": 1
        },
        {
          "action_type": "offsite_conversion.fb_pixel_view_content",
          "value": 19
        },
        {
          "action_type": "post_like",
          "value": 88
        },
        {
          "action_type": "page_engagement",
          "value": 107
        },
        {
          "action_type": "post_engagement",
          "value": 107
        },
        {
          "action_type": "offsite_conversion",
          "value": 20
        }
      ],
      "spend": 5.16,
      "account_id": "10201496xxxxxxxxxx",
      "campaign_name": "Link Clicks to Website (CPC)",
      "ad_name": "[2015/11/27] New Arrivals",
      "adset_name": "Custom Audience - Visitors or Lookalike - Visitors",
      "impressions": "2634",
      "date_start": "2015-11-01",
      "date_stop": "2015-12-01"
    }, ...

我们看到有offsite_conversion.fb_pixel_view_contentoffsite_conversion.fb_pixel_purchase。我的某些广告系列针对购买进行了优化,有些针对观看内容进行了优化。如何从API响应本身中找出针对广告系列进行动态优化的事件?

1 个答案:

答案 0 :(得分:0)

嘿,

我认为您是在谈论广告集的优化,而不是在广告系列一级,而是在广告系列中,您无法设置优化策略或出价。

对于您的问题: 您是说promoted_object吗? 这会为您提供广告集的custom_event_type(例如CONTENT_VIEW,ADD_TO_CART,PURCHASE ...)中的事件目标。

调用promoted_object时,它将返回以下内容:

"promoted_object": { "pixel_id": "<PIXEL-ID>", "custom_event_type": "ADD_TO_CART"