İşlem bağlantılarını belirtin

.

İşlem bağlantısı, kullanıcıların derin bağlantıyla etkileşime girmesine olanak tanır Kullanıcı, bir işlem gerçekleştirmek için iş ortağının web sitesine yönlendiren bir bağlantı içerir. Derin bağlantılar satıcının bilgi panelinde gösterilir. Bu kılavuzda, Çevik yaklaşımın feed'lere işlem bağlantıları eklemek için kullanılır.

Tüm hizmetler şu işlemleri gerçekleştirdiğinde satıcı feed'leri üzerinden bir işlem bağlantısı sağlamanız gerekir: belirli bir satıcının kullanıcıları web sitesindeki aynı açılış sayfasına iş ortağının web sitesine bakın.

İşlem türü, ActionLinkType

Appointments Redirect entegrasyonu için ActionLinkType, ACTION_LINK_TYPE_BOOK_APPOINTMENT olarak ayarlanmalıdır.

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

Bir hizmetin özel bir yönlendirme bağlantısı varsa Hizmet feed'leri aracılığıyla bir işlem bağlantısı sağlamanız gerekir.

Appointments Redirect entegrasyonu için ActionLinkType, ACTION_LINK_TYPE_BOOK_APPOINTMENT olarak ayarlanmalıdır.

İşlem türü,ActionLinkType ActionLink feed'i var.

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