汽车广告 - 受众管理

如要成功管理受众,您可以采取以下操作:

关联您的 Pixel 像素代码与您的目录

通过商务管理平台

  1. 前往商务管理平台 > 商品目录 > 设置 > 关联来源
  2. 选择 Pixel 像素代码。

如需了解更多信息,请参见为汽车进阶赋能型目录广告执行 Pixel 像素代码和/或移动 SDK

通过 API

use FacebookAds\Object\ProductCatalog;

$product_catalog = new ProductCatalog(<PRODUCT_CATALOG_ID>);
$product_catalog->createExternalEventSource(array(), array(
  'external_event_sources' => array(
    <PIXEL_ID>
  ),
));

对受众开展再营销

在代码块中添加页面事件来源的部分:

{
  "type": "page",
  "id": "<PAGE_ID>",
}

下面是如何使用 Pixel 像素代码、应用和页面事件的信号对受众开展再营销的示例;也就是说,捕捉访问过某些车型页面的受众。

只有在使用带有 Facebook 站内目标位置的汽车库存广告时,页面事件才可用。

curl \
  -F 'name=Viewed vechicles in vehicle set in Last 30 days' \
  -F 'subtype=CLAIM' \
  -F 'claim_objective=VEHICLE' \
  -F 'content_type=VEHICLE' \
  -F 'event_sources=[
  {
      "type": "pixel",
      "id": "<PIXEL_ID>"
  },
  {
      "type": "app",
      "id": "<APP_ID>"
  }
  ]' \
  -F 'rule={"vehicle_set_id":{"eq":"<VEHICLE_SET_ID>"}}' \
  -F 'inclusions=[
  {        
      "event": "ViewContent",
      "retention": {"min_seconds":0,"max_seconds":2592000}
  },
  { 
      "event": "Search",
      "retention": {"min_seconds":0,"max_seconds":2592000}
  },
  {
      "event": "AddToWishlist",
      "retention": {"min_seconds":0,"max_seconds":2592000}
  }
  ]' \
  -F 'exclusions=[{
      "event":"Lead",
      "retention": {"min_seconds":0,"max_seconds":2592000}
  }]' \
  -F 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/<API_VERSION>/act_<AD_ACCOUNT_ID>/customaudiences

如果成功,将返回受众编号。在创建广告以根据信号对用户进行再营销时,可以在广告组层级的 dynamic_audience_ids 字段中使用这个受众编号。

了解关于汽车库存广告再营销的最佳实践的更多信息。