Prześlij listy odbiorców z kierowania na listę klientów

Za pomocą interfejsu Display & Video 360 API możesz tworzyć listy odbiorców z kierowania na listę klientów na podstawie przesłanych danych kontaktowych klientów lub identyfikatorów urządzeń mobilnych. Na tej stronie znajdziesz instrukcje tworzenia początkowej listy odbiorców z kierowaniem na listę klientów i dodawania do niej nowych danych o klientach za pomocą interfejsu Display & Video 360 API.

Przygotowywanie danych użytkowników

Dane użytkownika używane do wypełniania list odbiorców kierowania na listę klientów są informacjami poufnymi i przed przesłaniem muszą zostać odpowiednio przygotowane.

Haszowanie danych wrażliwych

Niektóre listy odbiorców z kierowania na listę klientów są tworzone na podstawie poufnych danych kontaktowych klientów. Display & Video 360 wymaga, aby przed przesłaniem dane wrażliwe były zaszyfrowane algorytmem SHA256. Przed przesłaniem te pola danych muszą zostać zaszyfrowane:

  • Imię
  • Nazwisko
  • Adresy e-mail
  • Numery telefonów

Kodów pocztowych i kodów krajów nie należy szyfrować przed przesłaniem. Próba przesłania niezaszyfrowanych danych klienta powoduje błąd.

Przed zaszyfrowaniem danych pamiętaj o tych warunkach:

  • W wartościach imienia, nazwiska i adresu e-mail nie można pozostawić żadnych spacji.
  • Wszystkie wartości muszą być zapisane małymi literami.
  • Wszystkie numery telefonów muszą być sformatowane zgodnie z formatem E.164 i mieć kod kraju.

Podczas przesyłania danych użytkownika użyj pól consent w dostępnych obiektach ContactInfoList lub MobileDeviceIdList, aby przekazać sygnały zgody udzielonej przez uwzględnionych użytkowników.

Ustawienie dowolnego pola w obiekcie Consent na wartość CONSENT_STATUS_DENIED powoduje błąd.

Sygnały dotyczące zgody są ustawiane dla wszystkich użytkowników dodanych w jednym żądaniu firstAndThirdPartyAudiences.create lub firstAndThirdPartyAudiences.editCustomerMatchMembers. Dane użytkowników z różnymi sygnałami dotyczącymi zgody na przetwarzanie danych muszą być przesyłane w osobnych żądaniach.

Tworzenie listy odbiorców z dopasowywaniem do klientów

Listę odbiorców kierowania na listę klientów możesz utworzyć za pomocą metody firstAndThirdPartyAudiences.create. Lista odbiorców musi być zgłoszona jako własna i miećaudienceTypeCUSTOMER_MATCH_CONTACT_INFO lubCUSTOMER_MATCH_DEVICE_ID. Dane kierowania na listę klientów należy podawać w odpowiednim polu w polu zjednoczenia members.

Oto przykład utworzenia nowej listy odbiorców z kierowaniem na listę klientów na podstawie danych kontaktowych z okresem członkostwa wynoszącym 540 dni, korzystając z podanej listy zaszyfrowanych numerów telefonów:

Java

// Create Customer Match audience object.
FirstAndThirdPartyAudience customerMatchAudience =
    new FirstAndThirdPartyAudience()
        .setDisplayName(display-name)
        .setFirstAndThirdPartyAudienceType(
            "FIRST_AND_THIRD_PARTY_AUDIENCE_TYPE_FIRST_PARTY"
        )
        .setAudienceType("CUSTOMER_MATCH_CONTACT_INFO")
        .setMembershipDurationDays(540L);

// Build list of contact information objects.
ContactInfoList contactInfoList = new ContactInfoList();
ArrayList<ContactInfo> contactInfos = new ArrayList<ContactInfo>();
for (String hashedPhoneNumber : list-of-hashed-phone-numbers) {
  ContactInfo contactInfo = new ContactInfo();
  ArrayList<String> phoneNumberList = new ArrayList<String>();
  phoneNumberList.add(hashedPhoneNumber);
  contactInfo.setHashedPhoneNumbers(phoneNumberList);
  contactInfos.add(contactInfo);
}
contactInfoList.setContactInfos(contactInfos);

// Build consent object for passing consent if granted by the end user.
Consent consent =
    new Consent()
        .setAdUserData(ad-user-data-consent)
        .setAdPersonalization(ad-personalization-consent);
ContactInfoList.setConsent(consent);

// Assign contact info list to Customer Match audience.
customerMatchAudience.setContactInfoList(contactInfoList);

// Create Customer Match audience.
FirstAndThirdPartyAudience response =
    service
        .firstAndThirdPartyAudiences()
        .create(customerMatchAudience)
        .setAdvertiserId(advertiser-id)
        .execute();

// Display name of new audience.
System.out.printf(
    "Customer Match audience %s was created.",
    response.getName()
);

Python

# Build list of Contact Info objects
contact_infos = []
for hashed_phone_number in list-of-hashed-phone-numbers:
  contact_infos.append({'hashedPhoneNumbers': [hashed_phone_number]})

# Create a Customer Match first- and third-party audience object.
audience_obj = {
    'displayName': display-name,
    'firstAndThirdPartyAudienceType':
        'FIRST_AND_THIRD_PARTY_AUDIENCE_TYPE_FIRST_PARTY',
    'audienceType': 'CUSTOMER_MATCH_CONTACT_INFO',
    'membershipDurationDays': 540,
    'contactInfoList': {
        'contactInfos': [
            contact_infos
        ],
        'consent': {
            'adUserData': ad-user-data-consent,
            'adPersonalization': ad-personalization-consent
        }
    }
}

# Build and execute request.
audience = service.firstAndThirdPartyAudiences().create(
    advertiserId=advertiser-id,
    body=audience_obj
).execute()

# Display name of new audience.
print('Customer Match audience %s was created.' % audience["name"])

PHP

// Create a Customer Match first- and third-party audience object.
$audience = new Google_Service_DisplayVideo_FirstAndThirdPartyAudience();
$audience->setDisplayName(display-name);
$audience->setFirstAndThirdPartyAudienceType(
    'FIRST_AND_THIRD_PARTY_AUDIENCE_TYPE_FIRST_PARTY'
);
$audience->setAudienceType('CUSTOMER_MATCH_CONTACT_INFO');
$audience->setMembershipDurationDays(540);

// Build list of contact information objects.
$contactInfoList = new Google_Service_DisplayVideo_ContactInfoList();
$contactInfos = array();
foreach (list-of-hashed-phone-numbers as $hashedPhoneNumber) {
    $contactInfo = new Google_Service_DisplayVideo_ContactInfo();
    $contactInfo->setHashedPhoneNumbers(array($hashedPhoneNumber));
    $contactInfos[] = $contactInfo;
}
$contactInfoList->setContactInfos($contactInfos);

// Build consent object for passing consent if granted by the end user.
$consent = new Google_Service_DisplayVideo_Consent();
$consent->setAdUserData(ad-user-data-consent);
$consent->setAdPersonalization(ad-personalization-consent);
$contactInfoList->setConsent($consent);

// Assign contactInfoList to audience object.
$audience->setContactInfoList($contactInfoList);

// Call the API, creating the audience.
$result = $this->service->firstAndThirdPartyAudiences->create(
    $audience,
    array('advertiserId' => advertiser-id)
);

// Display name of new audience.
printf('Customer Match audience %s was created.', $result['name']);

Zmiana listy odbiorców kierowania na listę klientów

Jeśli chcesz kierować reklamy na dodatkowych klientów, chcesz odnowić członkostwo klientów w dotychczasowych listach odbiorców lub chcesz usunąć klientów z listy odbiorców, możesz zaktualizować dane klientów na dotychczasowej liście odbiorców kierowania na listę klientów za pomocą metody firstAndThirdPartyAudiences.editCustomerMatchMembers. Możesz dodawać klientów do listy za pomocą pola unii added_members, a także usuwać ich z listy za pomocą pola unii removed_members.

Pojedynczy request firstAndThirdPartyAudiences.editCustomerMatchMembers może tylko dodawać lub usuwać członków z listy. Pojedyncze żądanie próbujące wykonać obie te czynności powoduje błąd INVALID_ARGUMENT.

Oto przykład dodawania pojedynczego klienta jako członka istniejącej listy odbiorców z kierowaniem na listę klientów na podstawie danych kontaktowych, korzystając z podanych danych adresu pocztowego:

Java

// Create an edit members request object.
EditCustomerMatchMembersRequest editCustomerMatchMembersRequest =
    new EditCustomerMatchMembersRequest()
        .setAdvertiserId(advertiser-id);

// Build contact information object to add to audience.
ContactInfoList contactInfoList = new ContactInfoList();
ArrayList<ContactInfo> contactInfos = new ArrayList<ContactInfo>();
ContactInfo contactInfo =
    new ContactInfo()
        .setHashedFirstName(hashed-customer-first-name)
        .setHashedLastName(hashed-customer-last-name)
        .setZipCodes(customer-zip-codes-list)
        .setCountryCode(customer-country-code);
contactInfos.add(contactInfo);
contactInfoList.setContactInfos(contactInfos);

// Build consent object for passing consent if granted by the end user.
Consent consent =
    new Consent()
        .setAdUserData(ad-user-data-consent)
        .setAdPersonalization(ad-personalization-consent);
ContactInfoList.setConsent(consent);

// Assign contact info list to request body.
editCustomerMatchMembersRequest.setAddedContactInfoList(contactInfoList);

// Edit Customer Match audience membership.
EditCustomerMatchMembersResponse response =
    service
        .firstAndThirdPartyAudiences()
        .editCustomerMatchMembers(
            audience-id,
            editCustomerMatchMembersRequest
        )
        .execute();

// Display ID of updated audience.
System.out.printf(
    "The membership of Customer Match audience ID %s was edited.",
    response.getFirstAndThirdPartyAudienceId()
);

Python

# Create an edit members request object.
edit_member_request_obj = {
    'advertiserId': advertiser-id,
    'addedContactInfoList': {
        'contactInfos': [
            {
                'hashedFirstName': hashed-customer-first-name,
                'hashedLastName': hashed-customer-last-name,
                'countryCode': customer-country-code,
                'zipCodes': customer-zip-codes-list
            }
        ],
        'consent': {
          'adUserData': ad-user-data-consent,
          'adPersonalization': ad-personalization-consent
        }
    }
}

# Build and execute request.
response = service.firstAndThirdPartyAudiences().editCustomerMatchMembers(
    firstAndThirdPartyAudienceId=audience-id,
    body=edit_member_request_obj
).execute()

# Display ID of updated audience.
print('The membership of the Customer Match audience ID %s was updated.'
      % response["firstAndThirdPartyAudienceId"])

PHP

// Create an edit members request object.
$editMemberRequest =
    new Google_Service_DisplayVideo_EditCustomerMatchMembersRequest();
$editMemberRequest->setAdvertiserId(advertiser-id);

// Build contact information object to add to audience.
$contactInfoList = new Google_Service_DisplayVideo_ContactInfoList();
$contactInfos = array();
$contactInfo = new Google_Service_DisplayVideo_ContactInfo();
$contactInfo->setHashedFirstName(hashed-customer-first-name);
$contactInfo->setHashedLastName(hashed-customer-last-name);
$contactInfo->setCountryCode(customer-country-code);
$contactInfo->setZipCodes(array(customer-zip-codes-list));
$contactInfos[] = $contactInfo;
$contactInfoList->setContactInfos($contactInfos);

// Build consent object for passing consent if granted by the end user.
$consent = new Google_Service_DisplayVideo_Consent();
$consent->setAdUserData(ad-user-data-consent);
$consent->setAdPersonalization(ad-personalization-consent);
$contactInfoList->setConsent($consent);

// Assign contactInfoList to edit members request body.
$editMemberRequest->setAddedContactInfoList($contactInfoList);

// Call the API, editing the audience membership.
$response = $this
    ->service
    ->firstAndThirdPartyAudiences
    ->editCustomerMatchMembers(
        audience-id,
        $editMemberRequest
    );

// Display ID of updated audience.
printf(
    'The membership of Customer Match audience ID %s was edited',
    $result['firstAndThirdPartyAudienceId']
);