動作連結可讓使用者與深層連結互動,連結會連往合作夥伴的網站,以便執行動作。深層連結會顯示在商家知識面板中。本指南將說明如何在動態饋給中加入動作連結。
您可以在兩個地方提供動作連結:
商家層級動作連結
如果特定商家的所有服務都會將使用者重新導向夥伴網站上的相同到達網頁,您應透過商家動態饋給提供動作連結。
每個商家只有一種服務,因此這通常是餐飲業唯一有意義的實作方式。
範例如下:
- 商家提供多種服務,例如瑜珈課程、拳擊課程、單車課程、剪髮、染髮、洗髮。動作連結會重新導向至到達網頁,顯示商家的完整服務目錄。
必須使用 ActionLinkType
指定動作類型,該值是商家動態饋給中 ActionLink
的一部分。
// Predetermined type of action associated with an action link. enum ActionLinkType { // The action link type is unspecified. ACTION_LINK_TYPE_UNSPECIFIED = 0; // The action link type is booking an appointment. ACTION_LINK_TYPE_BOOK_APPOINTMENT = 1; // The action link type is booking an online appointment. ACTION_LINK_TYPE_BOOK_ONLINE_APPOINTMENT = 2; // The action link type is ordering food for delivery or takeout or both. ACTION_LINK_TYPE_ORDER_FOOD = 3; // The action link type is ordering food for delivery. ACTION_LINK_TYPE_ORDER_FOOD_DELIVERY = 4; // The action link type is ordering food for takeout. ACTION_LINK_TYPE_ORDER_FOOD_TAKEOUT = 5; // The action link type is making a dining reservation. ACTION_LINK_TYPE_MAKE_DINING_RESERVATION = 6; // The action link type allows users to shop from the given merchant. It // could either be delivery or pickup. ACTION_LINK_TYPE_SHOP_ONLINE = 7; }
服務層級動作連結
如果商家每項服務都有不同的深層連結,或是商家提供多項服務,執行不同的動作 (例如訂餐和餐廳訂位),請透過服務動態饋給提供動作連結。
範例如下:
- 餐廳提供餐飲預訂和訂餐服務。一個動作連結會將使用者重新導向至餐廳訂位頁面,另一個則會將使用者重新導向至餐點訂購頁面
您可以使用服務中的 ServiceType
和商家動態饋給中的 ActionLinkType
指定動作類型。ActionLink
是 ActionLink
的一部分。
enum ServiceType { SERVICE_TYPE_UNSPECIFIED = 0; // Service that provides dining reservation. SERVICE_TYPE_DINING_RESERVATION = 1; // Service that provides food ordering in general, could be either takeout // or delivery or both. SERVICE_TYPE_FOOD_ORDERING = 2; // Service that only provides food delivery. SERVICE_TYPE_FOOD_DELIVERY = 6; // Service that only provides food takeout. SERVICE_TYPE_FOOD_TAKEOUT = 7; // Services that provide event based ticketing (e.g. concerts, sporting // events, shows). Do not use for Reserve with Google integrations. SERVICE_TYPE_EVENT_TICKET = 3; SERVICE_TYPE_TRIP_TOUR = 4; // Service that provides appointments or classes. Recommended for (1) health // and fitness, (2) spa and beauty, and (3) financial consults and // evaluations services. Please see the supported service types: // https://developers.google.com/maps-booking/guides/end-to-end-integration/overview SERVICE_TYPE_APPOINTMENT = 5; // Service that provides appointment for an online class or session which // will be fully virtual. Must be set if enabling virtual service bookings. SERVICE_TYPE_ONLINE_APPOINTMENT = 8; // Service that allows users to shop from the given merchant. It could // either be delivery or pickup. SERVICE_TYPE_SHOPPING = 9; }
使用 OrderOnlineMetadata
OrderOnlineMetadata 用於指定要向使用者顯示的資訊,包括任何費用、最低訂單金額,以及各種線上購物履行方式的可用性。加入這項中繼資料後,系統會在 Merchant 動態饋給中加入這項中繼資料和動作連結。
如要進一步瞭解如何在動態饋給中正確加入這項資訊 (如果整合作業需要的話),請參閱下列說明文件:
- 零售訂購動態饋給範例,其中包含這項中繼資料
- 教學課程:新增及更新供應情形中繼資料
- OrderOnlineMetadata 參考定義