アップロードした顧客の連絡先を使用して、カスタマー マッチ オーディエンスを作成できます。 モバイル デバイス ID に関する情報や、Video 360 API。このページでは、以下の方法について説明します。 カスタマー マッチの最初のオーディエンスを作成し、新しい顧客データを ディスプレイ &ビデオ 360 でVideo 360 API。
ユーザーデータを準備する
カスタマー マッチ オーディエンスへのデータ入力に使用されるユーザーデータは機密情報であり、機密情報を扱う必要があります。 アップロードする前に適切に準備する必要があります
センシティブ データをハッシュ化する
一部のカスタマー マッチ オーディエンスは、機密性の高い顧客の連絡先を使用して作成されます 情報です。ディスプレイとビデオ 360 では、機密データは SHA256 アルゴリズムが必要です。次のデータ フィールドはハッシュ化する必要があります アップロード前:
- 名
- 姓
- メールアドレス
- 電話番号
郵便番号と国コードは、アップロード前にハッシュ化しないでください。試行 ハッシュ化されていない顧客データをアップロードすると、エラーが発生します。
データをハッシュ化する前に、次の条件を確認してください。
- 姓、名、メールアドレスの空白文字は削除してください。 使用できます。
- 値はすべて小文字にする必要があります。
- 電話番号はすべて E.164 形式で指定してください。 国番号を含めてください。
ユーザーの同意を設定する
ユーザーデータをアップロードする際は、用意されているconsent
ContactInfoList
または
同意のシグナルを渡す MobileDeviceIdList
オブジェクト
ユーザーに付与されている権限などです
Consent
オブジェクトのいずれかのフィールドを
CONSENT_STATUS_DENIED
の場合はエラーになります。
同意シグナルは、1 つのステップで追加されたすべてのユーザー
firstAndThirdPartyAudiences.create
または
firstAndThirdPartyAudiences.editCustomerMatchMembers
リクエストできます。同意シグナルが異なるユーザーは、個別にアップロードする必要があります
できます。
カスタマー マッチ オーディエンスを作成する
カスタマー マッチ オーディエンスは、
firstAndThirdPartyAudiences.create
メソッドを使用します。対象者は
ファーストパーティ オーディエンスとして宣言され、
audienceType
/
CUSTOMER_MATCH_CONTACT_INFO
または
CUSTOMER_MATCH_DEVICE_ID
。カスタマー マッチ データは
union フィールド内の適切なフィールドを使用して指定します。
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
UNION フィールドを実行して、顧客を
removed_members
union フィールドを含むリスト。
単一の
firstAndThirdPartyAudiences.editCustomerMatchMembers
メンバーの追加と削除のみを行うことができます。1 つのリクエストが、
どちらも行うと、INVALID_ARGUMENT
エラーが発生します。
1 人のお客様をメンバーとして既存のサービス アカウントに追加する方法の例は、 連絡先情報 - 提供された住所データを使用するカスタマー マッチ オーディエンス:
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'] );