如需更多資訊,請參閱為汽車高效速成+ 目錄廣告實作像素和/或行動 SDK。
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>", }
以下是如何使用來自像素、應用程式和頁面事件的訊號來建立再次鎖定廣告受眾的範例;亦即,抓住瀏覽過特定車輛組合所屬車輛頁面的廣告受眾。
頁面事件僅適用於具有 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
欄位中使用此廣告受眾編號,就可以根據您的訊號,再次鎖定用戶。
深入瞭解再次鎖定汽車目錄廣告受眾的最佳作法。