アクション リンクを指定する(従来版)

アクション リンクを使用すると、ユーザーはディープリンクを操作して、パートナーのウェブサイトにリンクし、アクションを実行できます。ディープリンクは販売者のナレッジパネルに表示されます。このガイドでは、フィードにアクション リンクを追加する方法について説明します。

アクション リンクは次の 2 か所で指定できます。

  • 販売者フィード - 1 つの販売者が類似のアクションを実行する複数のサービスを持っている場合は、販売者フィードを使用してアクション リンクを実装します。
  • サービス フィード - 1 人の販売者が異なるアクションを実行する複数のサービスを持っている場合は、サービス フィードを使用してアクション リンクを実装します。

特定の販売者のすべてのサービスが、パートナーのウェブサイトの同じランディング ページにユーザーをリダイレクトする場合は、販売者フィード経由でアクション リンクを指定する必要があります。

通常、販売者ごとに 1 つのサービスしかないため、これはダイニングで唯一意味のある実装です。

次に例を示します。

  • 販売者がヨガ教室、ボクシング教室、サイクリング教室、ヘアカット、ヘアカラー、シャンプーなどの複数のサービスを提供している場合。アクション リンクをクリックすると、販売者のサービス カタログ全体を表示するランディング ページにリダイレクトされます。

アクションのタイプは、販売者フィード内の ActionLink の一部である ActionLinkType を使用して指定する必要があります。

  // 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;
  }

販売者がサービスごとに異なるディープリンクを持っている場合や、販売者が料理の注文やレストランの予約など、異なるアクションを実行する複数のサービスを持っている場合は、サービス フィード経由でアクション リンクを提供する必要があります。

次に例を示します。

  • レストランで食事の予約と料理の注文ができる。1 つのアクション リンクはユーザーをレストランの予約ページにリダイレクトし、もう 1 つのアクション リンクはユーザーを料理の注文ページにリダイレクトします。

アクションのタイプは、サービス内の ServiceType と、販売者フィード内の ActionLink の一部である ActionLinkType を使用して指定できます。

  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 フィード内のアクション リンクとともに指定されます。

統合で必要な場合に、この情報をフィードに適切に含める方法について詳しくは、次のドキュメントをご覧ください。