Quảng cáo ô tô sử dụng các sự kiện có một nhóm thông số (danh sách đầy đủ chi tiết về thông số sự kiện). Bạn có thể dùng Facebook pixel cho sự kiện trên trang web và sự kiện trong ứng dụng di động Android cũng như iOS.
Sự kiện | Thời điểm kích hoạt | Mã mẫu |
---|---|---|
Search | Trên trang kết quả tìm kiếm cho lượt tìm kiếm về xe cộ/danh sách cung ứng | |
ViewContent | Trên trang web mà bạn muốn theo dõi lượt xem của nội dung chính. Ví dụ: trang chi tiết xe, trang mẫu xe, ưu đãi xe hoặc trang khuyến mãi. | |
AddToWishlist | Khi có người lưu, thích hoặc quan tâm đến bài niêm yết xe cụ thể |
Hướng dẫn này giả định rằng bạn đã cài đặt Facebook pixel. Nếu bạn chưa cài đặt, hãy xem bài viết Sử dụng API Marketing với pixel.
Trước khi bắt đầu
// This sample assumes the FB Pixel base code is already loaded fbq('track', 'Search', { content_type: 'vehicle', // RECOMMENDED: If sent, it must be set to 'vehicle' content_ids: ['123'], // RECOMMENDED: array of vehicle IDs postal_code: '94025', // RECOMMENDED country: 'United States', // RECOMMENDED don't use abbreviations make: 'Lexus', // RECOMMENDED model: 'ES', // RECOMMENDED year: '2017', // RECOMMENDED state_of_vehicle: 'CPO', // RECOMMENDED exterior_color: 'black', // RECOMMENDED transmission: 'automatic', // RECOMMENDED body_style: 'sedan', // RECOMMENDED fuel_type: 'gasoline', // RECOMMENDED drivetrain: 'awd', // RECOMMDENDED price: 1234.99, // RECOMMENDED, up to 2 decimals optional currency: 'USD', // REQUIRED if price and preferred_price_range is used, currency has to be the same for both price and preferred_price_range preferred_price_range: '[10000,20000]' // Optional up to two decimals, min,max });
// This sample assumes the FB Pixel base code is already loaded fbq('track', 'ViewContent', { content_type: 'vehicle', // RECOMMENDED: If sent, it must be set to 'vehicle' content_ids: ['123'], // REQUIRED: array of vehicle IDs postal_code: '94025', // RECOMMENDED country: 'United States', // RECOMMENDED don't use abbreviations make: 'Lexus', // RECOMMENDED model: 'ES', // RECOMMENDED year: '2017', // RECOMMENDED state_of_vehicle: 'CPO', // RECOMMENDED exterior_color: 'black', // RECOMMENDED transmission: 'automatic', // RECOMMENDED body_style: 'sedan', // RECOMMENDED fuel_type: 'gasoline', // RECOMMENDED drivetrain: 'awd', // RECOMMDENDED price: 1234.99, // RECOMMENDED, up to 2 decimals optional currency: 'USD', // REQUIRED if price and preferred_price_range is used preferred_price_range: '[10000,20000]' // Optional up to two decimals, min,max });
// This sample assumes the FB Pixel base code is already loaded fbq('track', 'AddToWishlist', { content_type: 'vehicle', // RECOMMENDED: If sent, it must be set to 'vehicle' content_ids: ['123'], // REQUIRED: array of vehicle IDs postal_code: '94025', // RECOMMENDED country: 'United States', // RECOMMENDED don't use abbreviations make: 'Lexus', // RECOMMENDED model: 'ES', // RECOMMENDED year: '2017', // RECOMMENDED state_of_vehicle: 'CPO', // RECOMMENDED exterior_color: 'black', // RECOMMENDED transmission: 'automatic', // RECOMMENDED body_style: 'sedan', // RECOMMENDED fuel_type: 'gasoline', // RECOMMENDED drivetrain: 'awd', // RECOMMDENDED price: 1234.99, // RECOMMENDED, up to 2 decimals optional currency: 'USD', // REQUIRED if price and preferred_price_range is used preferred_price_range: '[10000,20000]' // Optional up to two decimals, min,max });
Hướng dẫn này giả định rằng bạn đã triển khai Facebook SDK trong ứng dụng di động dành cho Android. Nếu bạn chưa triển khai, hãy xem bài viết Android SDK. Nếu bạn sử dụng đối tác đo lường, hãy đảm bảo họ chuyển các sự kiện bắt buộc cho Facebook.
Bundle parameters = new Bundle(); // IF YOU CHOOSE NOT TO USE A RECOMMENDED PARAM, THEN REMOVE IT, DON'T LEAVE IT EMPTY // RECOMMENDED: If sent, it must be set to 'vehicle' parameters.putString(AppEventsConstants.EVENT_PARAM_CONTENT_TYPE, "vehicle"); // RECOMMENDED: content ids - include eg top 5 search results parameters.putString(AppEventsConstants.EVENT_PARAM_CONTENT_ID, "[\"123\", \"234\", \"345\", \"456\", \"567\"]"); // top search results // RECOMMENDED: postal_code parameters.putString("fb_postal_code", "94025"); // RECOMMENDED: country parameters.putString("fb_country", "United States"); // RECOMMENDED: make // Allows you to target people based on their search of a specific make parameters.putString("fb_make", "Lexus"); // RECOMMENDED: model // Allows you to target people based on their search of a specific make model parameters.putString("fb_model", "ES"); // RECOMMENDED: year, in yyyy format // Allows you to target people based on their search for vehicles manufactured from a specific year parameters.putInt("fb_year", "2017"); // RECOMMENDED: state_of_vehicle // Allows you to target people based on their search of specific type of vehicle parameters.putString("fb_state_of_vehicle", "CPO"); // RECOMMENDED: exterior_color parameters.putString("fb_exterior_color", "black"); // RECOMMENDED: transmission parameters.putString("fb_transmission", "automatic"); // RECOMMENDED: body_style // Allows you to target people based on their search of a vehicle body style parameters.putString("fb_body_style", "sedan"); // RECOMMENDED: fuel_type parameters.putString("fb_fuel_type", "gasoline"); // RECOMMENDED: drivetrain parameters.putString("fb_drivetrain", "awd"); // RECOMMENDED: price parameters.putInt("fb_price", 1234.99); // RECOMMENDED: currency parameters.putInt("fb_currency", 'USD'); // RECOMMENDED: preferred_price_range parameters.putInt("fb_preferred_price_range", '[10000,20000]'); // Fire the 'Search' event on the search results page logger.logEvent(AppEventsConstants.EVENT_NAME_SEARCHED, parameters );
Bundle parameters = new Bundle(); // IF YOU CHOOSE NOT TO USE A RECOMMENDED PARAM, THEN REMOVE IT, DON'T LEAVE IT EMPTY // REQUIRED: content id of the vehicle that is shown parameters.putString(AppEventsConstants.EVENT_PARAM_CONTENT_ID, "123"); // RECOMMENDED: If sent, it must be set to 'vehicle' parameters.putString(AppEventsConstants.EVENT_PARAM_CONTENT_TYPE, "vehicle"); // RECOMMENDED: postal_code parameters.putString("fb_postal_code", "94025"); // RECOMMENDED: country parameters.putString("fb_country", "United States"); // RECOMMENDED: make // Allows you to target people based on their search of a specific make parameters.putString("fb_make", "Lexus"); // RECOMMENDED: model // Allows you to target people based on their search of a specific make model parameters.putString("fb_model", "ES"); // RECOMMENDED: year, in yyyy format // Allows you to target people based on their search for vehicles manufactured from a specific year parameters.putInt("fb_year", "2017"); // RECOMMENDED: state_of_vehicle // Allows you to target people based on their search of specific type of vehicle parameters.putString("fb_state_of_vehicle", "CPO"); // RECOMMENDED: exterior_color parameters.putString("fb_exterior_color", "black"); // RECOMMENDED: transmission parameters.putString("fb_transmission", "automatic"); // RECOMMENDED: body_style // Allows you to target people based on their search of a vehicle body style parameters.putString("fb_body_style", "sedan"); // RECOMMENDED: fuel_type parameters.putString("fb_fuel_type", "gasoline"); // RECOMMENDED: drivetrain parameters.putString("fb_drivetrain", "awd"); // RECOMMENDED: price parameters.putInt("fb_price", 1234.99); // RECOMMENDED: currency parameters.putInt("fb_currency", 'USD'); // RECOMMENDED: preferred_price_range parameters.putInt("fb_preferred_price_range", '[10000,20000]'); // Fire the 'ViewContent' event on the vehicle details or other specific content page logger.logEvent(AppEventsConstants.EVENT_NAME_VIEWED_CONTENT, parameters );
Bundle parameters = new Bundle(); // IF YOU CHOOSE NOT TO USE A RECOMMENDED PARAM, THEN REMOVE IT, DON'T LEAVE IT EMPTY // REQUIRED: content id of the vehicle that is added to wishlist parameters.putString(AppEventsConstants.EVENT_PARAM_CONTENT_ID, "123"); // RECOMMENDED: If sent, it must be set to 'vehicle' parameters.putString(AppEventsConstants.EVENT_PARAM_CONTENT_TYPE, "vehicle"); // RECOMMENDED: postal_code parameters.putString("fb_postal_code", "94025"); // RECOMMENDED: country parameters.putString("fb_country", "United States"); // RECOMMENDED: make // Allows you to target people based on their search of a specific make parameters.putString("fb_make", "Lexus"); // RECOMMENDED: model // Allows you to target people based on their search of a specific make model parameters.putString("fb_model", "ES"); // RECOMMENDED: year, in yyyy format // Allows you to target people based on their search for vehicles manufactured from a specific year parameters.putInt("fb_year", "2017"); // RECOMMENDED: state_of_vehicle // Allows you to target people based on their search of specific type of vehicle parameters.putString("fb_state_of_vehicle", "CPO"); // RECOMMENDED: exterior_color parameters.putString("fb_exterior_color", "black"); // RECOMMENDED: transmission parameters.putString("fb_transmission", "automatic"); // RECOMMENDED: body_style // Allows you to target people based on their search of a vehicle body style parameters.putString("fb_body_style", "sedan"); // RECOMMENDED: fuel_type parameters.putString("fb_fuel_type", "gasoline"); // RECOMMENDED: drivetrain parameters.putString("fb_drivetrain", "awd"); // RECOMMENDED: price parameters.putInt("fb_price", 1234.99); // RECOMMENDED: currency parameters.putInt("fb_currency", 'USD'); // RECOMMENDED: preferred_price_range parameters.putInt("fb_preferred_price_range", '[10000,20000]'); // Fire the 'AddToWishlist' event on the vehicle details or other specific content page logger.logEvent(AppEventsConstants.EVENT_NAME_ADDED_TO_WISHLIST, parameters );
Hướng dẫn này giả định rằng bạn đã triển khai Facebook SDK trong ứng dụng di động dành cho iOS. Nếu bạn chưa triển khai, hãy xem bài viết iOS SDK. Nếu bạn sử dụng đối tác đo lường, hãy đảm bảo họ chuyển các sự kiện bắt buộc cho Facebook.
// Fire the 'Search' event on the search results page [FBSDKAppEvents logEvent:FBSDKAppEventNameSearched // IF YOU CHOOSE NOT TO USE A RECOMMENDED PARAM, THEN REMOVE IT, DON'T LEAVE IT EMPTY parameters:@{ // RECOMMENDED: If sent, it must be set to 'vehicle' FBSDKAppEventParameterNameContentType : @"vehicle", // RECOMMENDED: content ids - include eg top 5 search results FBSDKAppEventParameterNameContentID : @"[\"123\", \"234\", \"345\", \"456\", \"567\"]", // RECOMMENDED: postal_code @"fb_postal_code" : @"94110", // RECOMMENDED: country @"fb_country" : @"US", // RECOMMENDED: make // Allows you to target people based on their search of a specific make @"fb_make" : @"Toyota", // RECOMMENDED: model // Allows you to target people based on their search of a specific make model @"fb_model" : @"Camry", // RECOMMENDED: year, in yyyy format @"fb_year" : @"2015", // RECOMMENDED: state_of_vehicle // Allows you to target people based on their search of specific type of vehicle @"fb_state_of_vehicle" : @"CPO", // RECOMMENDED: exterior_color @"fb_exterior_color" : @"black", // RECOMMENDED: transmission @"fb_transmission" : @"automatic", // RECOMMENDED: body_style // Allows you to target people based on their search of a vehicle body style @"fb_body_style" : @"Sedan", // RECOMMENDED: fuel_type @"fb_fuel_type" : @"gasoline", // RECOMMENDED: drivetrain @"fb_drivetrain" : @"awd", // RECOMMENDED: price @"fb_price" : @18000, // RECOMMENDED: currency @"fb_currency" : @"USD", // RECOMMENDED: preferred_price_range @"fb_preferred_price_range" : @"[10000,20000]", } ];
// Fire the 'ViewContent' event on the search results page [FBSDKAppEvents logEvent:FBSDKAppEventNameViewedContent // IF YOU CHOOSE NOT TO USE A RECOMMENDED PARAM, THEN REMOVE IT, DON'T LEAVE IT EMPTY parameters:@{ // REQUIRED: content ids for vehicle shown FBSDKAppEventParameterNameContentID : @"123", // RECOMMENDED: If sent, it must be set to 'vehicle' FBSDKAppEventParameterNameContentType : @"vehicle", // RECOMMENDED: postal_code @"fb_postal_code" : @"94110", // RECOMMENDED: country @"fb_country" : @"US", // RECOMMENDED: make // Allows you to target people based on their search of a specific make @"fb_make" : @"Toyota", // RECOMMENDED: model // Allows you to target people based on their search of a specific make model @"fb_model" : @"Camry", // RECOMMENDED: year, in yyyy format @"fb_year" : @"2015", // RECOMMENDED: body_style // Allows you to target people based on their search of a vehicle body style @"fb_body_style" : @"Sedan", // RECOMMENDED: state_of_vehicle // Allows you to target people based on their search of specific type of vehicle @"fb_state_of_vehicle" : @"CPO", // RECOMMENDED: exterior_color @"fb_exterior_color" : @"black", // RECOMMENDED: transmission @"fb_transmission" : @"automatic", // RECOMMENDED: fuel_type @"fb_fuel_type" : @"gasoline", // RECOMMENDED: drivetrain @"fb_drivetrain" : @"FWD", // RECOMMENDED: price @"fb_price" : 18000, } ];
// Fire the 'AddToWishlist' event on the search results page [FBSDKAppEvents logEvent:FBSDKAppEventNameAddedToWishlist // IF YOU CHOOSE NOT TO USE A RECOMMENDED PARAM, THEN REMOVE IT, DON'T LEAVE IT EMPTY parameters:@{ // REQUIRED: content id of vehicle added to wishlist FBSDKAppEventParameterNameContentID : @"123", // RECOMMENDED: If sent, it must be set to 'vehicle' FBSDKAppEventParameterNameContentType : @"vehicle", // RECOMMENDED: postal_code @"fb_postal_code" : @"94110", // RECOMMENDED: country @"fb_country" : @"US", // RECOMMENDED: make // Allows you to target people based on their search of a specific make @"fb_make" : @"Toyota", // RECOMMENDED: model // Allows you to target people based on their search of a specific make model @"fb_model" : @"Camry", // RECOMMENDED: year, in yyyy format @"fb_year" : @"2015", // RECOMMENDED: body_style // Allows you to target people based on their search of a vehicle body style @"fb_body_style" : @"Sedan", // RECOMMENDED: state_of_vehicle // Allows you to target people based on their search of specific type of vehicle @"fb_state_of_vehicle" : @"CPO", // RECOMMENDED: exterior_color @"fb_exterior_color" : @"black", // RECOMMENDED: transmission @"fb_transmission" : @"automatic", // RECOMMENDED: fuel_type @"fb_fuel_type" : @"gasoline", // RECOMMENDED: drivetrain @"fb_drivetrain" : @"FWD", // RECOMMENDED: price @"fb_price" : 18000, } ];
Mặc dù mỗi nhà quảng cáo ô tô có thể có các mục tiêu hoặc nhu cầu theo dõi tùy chỉnh hơi khác nhau trên trang web, nhưng chúng tôi đã cung cấp một số thông số khuyên dùng dưới đây dựa trên những hành động và KPI phổ biến nhất cho các trang web về ô tô.
Thông số là các nhóm nhỏ của một sự kiện tiêu chuẩn, có chức năng theo dõi thêm thông tin về từng hành động. Ví dụ: nếu đang theo dõi sự kiện ViewContent
trên một Trang chi tiết xe (VDP), bạn có thể dùng các thông số để đồng thời nắm bắt thông tin mỗi lần có người xem VDP đó, chẳng hạn như hãng xe, mẫu xe và năm sản xuất xe.
Mặc dù thông số là không bắt buộc khi thiết lập pixel chung chung, nhưng có một vài thông số cụ thể là bắt buộc đối với quảng cáo ô tô. Bạn nên thêm những thông số đó (ở mức tối thiểu) để giúp thiết lập DAA dễ dàng hơn ở hiện tại hoặc trong tương lai.
fb_
ở đầu, nhưng cũng có một số trường hợp ngoại lệ như content_ids
so với fb_content_id
, value
so với _valueToSum
.content_ids
hoặc content_type
), hệ thống sẽ cung cấp một mảng giá trị được mã hóa JSON: ["value1", "value2"]
. Lưu ý: Không ghép nối các giá trị bằng dấu phẩy.Trường thông tin và loại | Mô tả |
---|---|
Loại: chuỗi | Bắt buộc đối với Với tên sự kiện định sẵn, bạn có thể đo lường hiệu quả của chiến dịch và nắm bắt ý định của đối tượng. |
Loại: mảng chuỗi | Bắt buộc đối với ID liên quan như nêu trong danh mục xe của bạn. Ví dụ: |
Loại: chuỗi | Khuyên dùng đối với Loại sản phẩm hoặc loại nội dung. Giá trị được hỗ trợ: |
Loại: chuỗi | Khuyên dùng. Mã bưu chính cho vị trí xe. Ví dụ: |
Loại: chuỗi | Khuyên dùng. Tên quốc gia cho vị trí xe. Ví dụ: |
Loại: chuỗi | Khuyên dùng. Hãng/thương hiệu/nhà sản xuất xe. Ví dụ: |
Loại: chuỗi | Khuyên dùng. Mẫu xe. Ví dụ: |
Loại: số nguyên | Khuyên dùng. Năm ra mắt xe ở định dạng yyyy. Ví dụ: |
Loại: enum | Khuyên dùng. Cần thiết để biết đó là xe mới hay đã qua sử dụng. Giá trị được hỗ trợ: |
Loại: số nguyên | Khuyên dùng. Quãng đường xe đã đi (tính bằng km hoặc dặm); bằng 0 ( Ví dụ: |
Loại: chuỗi | Khuyên dùng. Đơn vị quãng đường đã đi tính bằng dặm ( |
Loại: chuỗi | Khuyên dùng. Màu ngoại thất của xe. Ví dụ: |
Loại: enum | Khuyên dùng. Loại hộp số của xe. Giá trị được hỗ trợ: |
Loại: enum | Khuyên dùng. Kiểu thân xe. Giá trị được hỗ trợ: |
Loại: enum | Khuyên dùng. Loại nhiên liệu của xe. Giá trị được hỗ trợ: |
Loại: enum | Khuyên dùng. Hệ thống truyền động của xe. Giá trị được hỗ trợ: |
Loại: số thực | Khuyên dùng. Giá xe. Ví dụ: |
Loại: [số thực (tối thiểu), số thực (tối đa)] | Khuyên dùng. Mức giá xe. Ví dụ: |
Loại: chuỗi | Khuyên dùng. Đơn vị tiền tệ cho |
Loại: chuỗi | Khuyên dùng. Phiên bản xe. Ví dụ: |
Loại: chuỗi | Khuyên dùng. Số khung. Số ký tự tối đa: 17 Ví dụ: |
Loại: chuỗi | Không bắt buộc. Màu nội thất của xe. Ví dụ: |
Loại: enum | Không bắt buộc. Tình trạng vật lý của xe. Giá trị được hỗ trợ: |
Loại: chuỗi | Không bắt buộc đối với Hãy sử dụng Ví dụ: |
Loại: chuỗi | Không bắt buộc đối với Hãy sử dụng Ví dụ: |
Loại: chuỗi | Không bắt buộc đối với Hãy sử dụng Ví dụ: |