Tworzenie listy użytkowników

W przypadku expression_rule_user_list: trzeba dokonać dodatkowego rozróżnienia. Według domyślnie Google Ads ANDłączy wszystkie elementy reguły w danym elemencie reguły grupy reklam. Oznacza to, że każdy element reguły w co najmniej jednej grupie elementów reguły musi pasować, aby reguła mogła dodać użytkownika do listy. Jest to tzw. „dysjednoktywna postać normalna” lub OR_OF_ANDS.

Możesz też skonfigurować listę w taki sposób, aby dodawała do niej użytkownika tylko wtedy, gdy co najmniej jeden element reguły w każdej grupie elementów reguły jest zgodny. Ten jest tzw. spójną postacią normalną”, AND_OF_ORS i jest dostępna za expression_rule_user_list za pomocą funkcji rule_type. Próbujemy użyj AND_OF_ORS jako date_specific_rule_user_list. spowoduje błąd.

Teraz musisz tylko połączyć powyższe grupy elementów reguł w nowego użytkownika z listy. W tym przypadku pozostawimy domyślną funkcję OR_OF_ANDS, bo po to przyjęliśmy te reguły.

Java

FlexibleRuleUserListInfo flexibleRuleUserListInfo =
    FlexibleRuleUserListInfo.newBuilder()
        .setInclusiveRuleOperator(UserListFlexibleRuleOperator.AND)
        .addInclusiveOperands(
            FlexibleRuleOperandInfo.newBuilder()
                .setRule(
                    // The default rule_type for a UserListRuleInfo object is OR of ANDs
                    // (disjunctive normal form). That is, rule items will be ANDed together
                    // within rule item groups and the groups themselves will be ORed together.
                    UserListRuleInfo.newBuilder()
                        .addRuleItemGroups(checkoutDateRuleGroup)
                        .addRuleItemGroups(checkoutAndCartSizeRuleGroup))
                // Optional: includes a lookback window for this rule, in days.
                .setLookbackWindowDays(7L))
        .build();
      

C#

FlexibleRuleUserListInfo flexibleRuleUserListInfo = new FlexibleRuleUserListInfo();
FlexibleRuleOperandInfo flexibleRuleOperandInfo = new FlexibleRuleOperandInfo() {
    Rule = new UserListRuleInfo()
};
flexibleRuleOperandInfo.Rule.RuleItemGroups.Add(checkoutAndCartSizeRuleGroup);
flexibleRuleOperandInfo.Rule.RuleItemGroups.Add(checkoutDateRuleGroup);
flexibleRuleUserListInfo.InclusiveOperands.Add(flexibleRuleOperandInfo);
      

PHP

$flexibleRuleUserListInfo = new FlexibleRuleUserListInfo([
    'inclusive_rule_operator' => UserListFlexibleRuleOperator::PBAND,
    'inclusive_operands' => [
        new FlexibleRuleOperandInfo([
            'rule' => new UserListRuleInfo([
                // The default rule_type for a UserListRuleInfo object is OR of ANDs
                // (disjunctive normal form). That is, rule items will be ANDed together
                // within rule item groups and the groups themselves will be ORed together.
                'rule_item_groups' => [
                    $checkoutAndCartSizeRuleGroup,
                    $checkoutDateRuleGroup
                ]
            ]),
            // Optionally add a lookback window for this rule, in days.
            'lookback_window_days' => 7
        ])
    ],
    'exclusive_operands' => []
]);
      

Python

# Create a FlexibleRuleUserListInfo object, or a flexible rule
# representation of visitors with one or multiple actions.
# FlexibleRuleUserListInfo wraps UserListRuleInfo in a
# FlexibleRuleOperandInfo object that represents which user lists to
# include or exclude.
flexible_rule_user_list_info = (
    rule_based_user_list_info.flexible_rule_user_list
)
flexible_rule_user_list_info.inclusive_rule_operator = (
    client.enums.UserListFlexibleRuleOperatorEnum.AND
)
# The default rule_type for a UserListRuleInfo object is OR of
# ANDs (disjunctive normal form). That is, rule items will be
# ANDed together within rule item groups and the groups
# themselves will be ORed together.
rule_operand = client.get_type("FlexibleRuleOperandInfo")
rule_operand.rule.rule_item_groups.extend(
    [
        checkout_and_cart_size_rule_group,
        checkout_date_rule_group,
    ]
)
rule_operand.lookback_window_days = 7
flexible_rule_user_list_info.inclusive_operands.append(rule_operand)
      

Ruby

r.flexible_rule_user_list = client.resource.flexible_rule_user_list_info do |frul|
  frul.inclusive_rule_operator = :AND
  frul.inclusive_operands << client.resource.flexible_rule_operand_info do |froi|
    froi.rule = client.resource.user_list_rule_info do |info|
      info.rule_item_groups += [checkout_date_rule_group, checkout_and_cart_size_rule_group]
    end
    # Optionally include a lookback window for this rule, in days.
    froi.lookback_window_days = 7
  end
end
      

Perl

my $flexible_rule_user_list_info =
  Google::Ads::GoogleAds::V17::Common::FlexibleRuleUserListInfo->new({
    inclusiveRuleOperator => AND,
    inclusiveOperands     => [
      Google::Ads::GoogleAds::V17::Common::FlexibleRuleOperandInfo->new({
          rule => Google::Ads::GoogleAds::V17::Common::UserListRuleInfo->new({
              # The default rule_type for a UserListRuleInfo object is OR of
              # ANDs (disjunctive normal form). That is, rule items will be
              # ANDed together within rule item groups and the groups
              # themselves will be ORed together.
              ruleItemGroups => [
                $checkout_date_rule_group, $checkout_and_cart_size_rule_group
              ]}
          ),
          # Optionally include a lookback window for this rule, in days.
          lookback_window_days => 7
        })
    ],
    exclusiveOperands => []});
      

Ogranicz wg zakresu dat wizyt w witrynie

expression_rule_user_list spełnia Twoje potrzeby. A co, jeśli tylko chcesz rejestrować użytkowników, którzy spełniają kryteria tej listy, i odwiedzać witrynę między 1 października a 31 grudnia? Użyjdate_specific_rule_user_list.

Proces tworzenia date_specific_rule_user_list przebiega tak samo jak w przypadku dla expression_rule_user_list. Zamiast ustawiać parametr expression_rule_user_list pola RuleBasedUserListInfo ustaw wartość date_specific_rule_user_list z polem Obiekt DateSpecificRuleUserListInfo. Ten obiekt będzie zawierał pola start_date. i end_date.

DateSpecificRuleUserListInfo dateSpecificRuleUserListInfo =
    DateSpecificRuleUserListInfo.newBuilder()
        .setRule(
            UserListRuleInfo.newBuilder()
                .addAllRuleItemGroups(
                    ImmutableList.of(checkoutAndCartSizeRuleGroup, checkoutDateRuleGroup)))
        .setStartDate(StringValue.of("2019-10-01"))
        .setEndDate(StringValue.of("2019-12-31"))
        .build();

Nowa lista będzie zawierać wszystkich użytkowników spełniających te same reguły co poprzednia z listy, ale tylko wtedy, gdy użytkownicy wejdą na Twoją stronę między start_date (włącznie) i end_date (włącznie).

Uwzględnij poprzednich użytkowników na liście

Do listy użytkowników opartej na regułach możesz też dołączać wcześniejszych użytkowników, ustawiając wartości prepopulation_status na liście użytkowników, REQUESTED, i monitorować postęp asynchronicznego procesu wstępnego uzupełniania przez okresowo sprawdzając stan tego pola.

Spowoduje to dodanie tylko wcześniejszych użytkowników z ostatnich 30 dni, w zależności od okresu członkostwa i daty dodania tagu remarketingowego. stan zostanie zmieniony na FINISHED po przetworzeniu żądania, lub FAILED, jeśli nie powiedzie się.