アクション リンクは、ユーザーがディープリンクを操作するための機能を提供します。 パートナーのウェブサイトにリンクし、アクションを実行します。ディープリンク 販売者のナレッジパネルに表示されます。このガイドでは、Google Cloud で フィードにアクション リンクを追加します。
販売者単位のアクション リンク
すべてのサービスが提供されている場合は、販売者フィードを介してアクション リンクを提供する必要があります。 リダイレクト先のランディングページが パートナーのウェブサイトをご覧ください。
<ph type="x-smartling-placeholder">アクションのタイプは、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; }
サービスレベルのアクション リンク
<ph type="x-smartling-placeholder">OrderOnlineMetadata の使用
<ph type="x-smartling-placeholder">「
OrderOnlineMetadata
は、表示する情報を指定するために使用されます。
さまざまなサービスの手数料、最低注文額、在庫状況についてユーザーに
オンライン小売店注文フルフィルメントの方法含まれる場合、このメタデータは
関連付ける必要があります
この情報を 統合で必要な場合は、以下をご覧ください。 ドキュメントをご覧ください。
- このメタデータを含む小売注文フィードのサンプル
- OrderOnlineMetadata リファレンス定義