ग्राहक मिलान वाली ऑडियंस अपलोड करें

ग्राहक के अपलोड किए गए संपर्क का इस्तेमाल करके, कस्टमर मैच ऑडियंस बनाई जा सकती हैं या मोबाइल डिवाइस आईडी के साथ अब Display &Video 360 के ज़रिए Video 360 API. इस पेज में बताया गया है कि का इस्तेमाल, शुरुआती कस्टमर मैच ऑडियंस बनाने और नए ग्राहक से जुड़े डेटा को मौजूदा ऑडियंस, जो Display &Video 360 के ज़रिए Video 360 API.

उपयोगकर्ता का डेटा तैयार करना

कस्टमर मैच ऑडियंस की जानकारी अपने-आप भरने के लिए, इस्तेमाल किया जाने वाला उपयोगकर्ता डेटा संवेदनशील होता है. यह ज़रूरी है कि पूरी तरह से तैयार हैं.

संवेदनशील जानकारी को हैश करें

कुछ कस्टमर मैच ऑडियंस तब बनाई जाती हैं, जब वे संवेदनशील संपर्क का इस्तेमाल करके बनाई जाती हैं जानकारी. डिसप्ले और Video 360 में ज़रूरी है कि संवेदनशील डेटा को अपलोड करने से पहले SHA256 एल्गोरिदम. इन डेटा फ़ील्ड को हैश किया जाना चाहिए अपलोड करने से पहले:

  • नाम
  • उपनाम
  • ईमेल पते
  • फ़ोन नंबर

अपलोड करने से पहले, पिन कोड और देश के कोड हैश नहीं किए जाने चाहिए. कोशिश की जा रही है हैश नहीं किए गए ग्राहक डेटा को अपलोड करने में गड़बड़ी होती है.

डेटा हैश करने से पहले, इन शर्तों का ध्यान रखें:

  • नाम, उपनाम, और ईमेल पते में मौजूद खाली सफ़ेद जगह को हटाना ज़रूरी है वैल्यू.
  • सभी वैल्यू को अंग्रेज़ी के छोटे अक्षरों में लिखा जाना चाहिए.
  • सभी फ़ोन नंबर E.164 फ़ॉर्मैट का इस्तेमाल करके फ़ॉर्मैट किए जाने चाहिए और देश का कॉल कोड शामिल करें.

उपयोगकर्ता का डेटा अपलोड करते समय, दिए गए फ़ील्ड में consent फ़ील्ड का इस्तेमाल करें ContactInfoList या सहमति के सिग्नल पास करने के लिए, MobileDeviceIdList ऑब्जेक्ट शामिल किए गए उपयोगकर्ताओं ने पहले ही देख लिया है.

Consent ऑब्जेक्ट में किसी भी फ़ील्ड को CONSENT_STATUS_DENIED की वजह से कोई गड़बड़ी हुई.

सहमति के सिग्नल, एक साथ जोड़े गए सभी उपयोगकर्ताओं के लिए सेट किए जाते हैं firstAndThirdPartyAudiences.create या firstAndThirdPartyAudiences.editCustomerMatchMembers अनुरोध. सहमति के अलग-अलग सिग्नल वाले उपयोगकर्ताओं को अलग-अलग अनुरोध.

ग्राहक मिलान ऑडियंस बनाना

कस्टमर मैच ऑडियंस बनाने के लिए, firstAndThirdPartyAudiences.create तरीका. ऑडियंस को उन्हें पहले-पक्ष की ऑडियंस के तौर पर मार्क किया जाना चाहिए. साथ ही, यह भी ज़रूरी है कि में से audienceType CUSTOMER_MATCH_CONTACT_INFO या CUSTOMER_MATCH_DEVICE_ID. कस्टमर मैच डेटा यूनियन फ़ील्ड में सही फ़ील्ड का इस्तेमाल करके दिया गया हो members.

यहां एक उदाहरण दिया गया है. इसमें, ग्राहक मिलान के लिए नई संपर्क जानकारी बनाने का तरीका बताया गया है हैश की गई सूची का इस्तेमाल करके अनलिमिटेड सदस्यता अवधि वाली ऑडियंस फ़ोन नंबर:

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(10000L);

// 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': 10000,
    '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(10000);

// 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']);

कस्टमर मैच ऑडियंस की सदस्यता अपडेट करना

यदि आपने ऐसे अतिरिक्त ग्राहकों की पहचान की है, जिन्हें आप लक्षित करना चाहते हैं, तो रिन्यू करने के लिए ऑडियंस की मौजूदा सदस्यताओं या ग्राहकों को हटाना है है, तो आप किसी मौजूदा ग्राहक का ग्राहक डेटा अपडेट कर सकते हैं ऑडियंस को firstAndThirdPartyAudiences.editCustomerMatchMembers तरीका. ग्राहकों को सूची में जोड़ने के लिए, added_members यूनियन फ़ील्ड removed_members यूनियन फ़ील्ड के साथ सूची बनाएं.

सिंगल firstAndThirdPartyAudiences.editCustomerMatchMembers अनुरोध के तहत सिर्फ़ सदस्यों को जोड़ा या हटाया जा सकता है. एक अनुरोध की कोशिश की जा रही है दोनों का इस्तेमाल करने पर, INVALID_ARGUMENT गड़बड़ी दिखती है.

यहां एक उदाहरण में किसी मौजूदा खाते के सदस्य के तौर पर एक ग्राहक को जोड़ने का तरीका बताया गया है ग्राहक मिलान ऑडियंस की संपर्क जानकारी, जो दिए गए डाक पते के डेटा का इस्तेमाल करके ग्राहक मिलान करती है:

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']
);