सुरक्षित ऑडियंस की मदद से, कस्टम ऑडियंस डेलिगेशन की सुविधा में शामिल होना

fetchAndJoinCustomAudience API, खरीदारों को ऑडियंस के डिवाइस पर अपने पार्टनर एमएमपी या एसएसपी की मौजूदगी का फ़ायदा उठाएं.

खास जानकारी

इसके काम करने के तरीके की सामान्य जानकारी यह है कि डिवाइस पर मौजूद कॉलर (भले ही MMP या SSP SDK टूल होने चाहिए) का इस्तेमाल करके, fetchAndJoinCustomAudienceRequest बनाया जाता है. यह ऐसा दिखता है:

Kotlin

/**
 * @param fetchUri The URL to retrieve the CA from.
 * (optional)@param name The name of the CA to join.
 * (optional)@param activationTime The time when the CA will activate.
 * (optional)@param expirationTime The time when the CA will expire,
    must be a time in the future otherwise this will fail
 * (optional)@param userBiddingSignals The user bidding signals used at auction.
*/

val request = FetchAndJoinCustomAudienceRequest.Builder(fetchUri)
    .setName(name)
    .setActivationTime(activationTime)
    .setExpirationTime(expirationTime)
    .setUserBiddingSignals(userBiddingSignals)
    .build()

Java

/**
 * @param fetchUri The URL to retrieve the CA from.
 * (optional)@param name The name of the CA to join.
 * (optional)@param activationTime The time when the CA will activate.
 * (optional)@param expirationTime The time when the CA will expire,
    must be a time in the future otherwise this will fail
 * (optional)@param userBiddingSignals The user bidding signals used at auction.
*/

FetchAndJoinCustomAudienceRequest request =
 new FetchAndJoinCustomAudienceRequest.Builder(fetchUri)
  .setName(name) //Optional
  .setActivationTime(activationTime) //Optional
  .setExpirationTime(expirationTime) //Optional
  .setUserBiddingSignals(userBiddingSignals) //Optional
  .build();

सभी वैकल्पिक पैरामीटर के बारे में एक अहम बात यह है कि अगर वे सेट हैं, तो फ़ेच करने के अनुरोध में, उनके डेटा को इस आधार पर ओवरराइड नहीं किया जा सकता कि क्या दिखाया गया है अतिरिक्त कंट्रोल मिलता है, ताकि आप कस्टम ऑडियंस बनी रहती है.

fetchUri को एक ऐसे सर्वर एंडपॉइंट पर पॉइंट करना चाहिए जिसे खरीदार ऑपरेट करता है इससे, कस्टम ऑडियंस JSON ऑब्जेक्ट दिखेगा जो देखे गए फ़ॉर्मैट से मेल खाता है यहां:

//Return a 200 response with data matching the format of the following in the body
{
  "daily_update_uri": "https://js.example.com/bidding/daily",
  "bidding_logic_uri": "https://js.example.com/bidding",
  "user_bidding_signals": {
    "valid": true,
    "arbitrary": "yes"
  },
  "trusted_bidding_data": {
    "trusted_bidding_uri": "https://js.example.com/bidding/trusted",
    "trusted_bidding_keys": [
      "key1",
      "key2"
    ]
  },
  "ads": [
    {
      "render_uri": "https://js.example.com/render/fetch_and_join_ad1",
      "metadata": {
        "valid": 1
      }
    },
    {
      "render_uri": "https://js.example.com/render/fetch_and_join_ad2",
      "metadata": {
        "valid": 2
      }
    }
  ]
}

इसके समाधान के तरीके के बारे में एपीआई की तरफ़ से ज़्यादा जानकारी कैलिफ़ोर्निया में शामिल होने का न्योता देने के लिए डिज़ाइन प्रस्ताव.

टेस्ट करना

क्लाइंट कोड में फ़ेच कॉल लागू करने के बाद, कस्टम ऑडियंस डेटा वापस करने के लिए, डीएसपी की ओर से एंडपॉइंट सेट अप किया गया है. इसकी जांच की जा सकती है कस्टम ऑडियंस में शामिल होने का ऐक्सेस देने की सुविधा. अपना ऐप्लिकेशन चलाने से पहले, आपको इनकी ज़रूरत होगी इसे चालू करने के लिए, नीचे दिया गया कमांड चलाएं. इससे Privacy Sandbox को चालू करने के लिए, यूज़र इंटरफ़ेस (यूआई) खुलेगा:

adb shell am start -n com.google.android.adservices.api/com.android.adservices.ui.settings.activities.AdServicesSettingsMainActivity

यूज़र इंटरफ़ेस (यूआई) के पॉप-अप होने के बाद, पक्का करें कि आपने प्राइवसी सैंडबॉक्स को चालू करने के लिए टॉगल किया हो. इसके बाद, टेस्टिंग के लिए डिवाइस सेट अप करने की प्रोसेस पूरी करने के लिए, दिए गए ADB कमांड चलाएं:

adb shell device_config set_sync_disabled_for_tests persistent
adb shell device_config put adservices ppapi_app_signature_allow_list \"\*\"
adb shell device_config put adservices ppapi_app_allow_list \"\*\"
adb shell device_config put adservices adservice_system_service_enabled true
adb shell device_config put adservices adservice_enabled true
adb shell device_config put adservices adservice_enable_status true
adb shell device_config put adservices global_kill_switch false
adb shell device_config put adservices fledge_js_isolate_enforce_max_heap_size false
adb shell device_config put adservices fledge_custom_audience_service_kill_switch false
adb shell device_config put adservices fledge_select_ads_kill_switch false
adb shell device_config put adservices adid_kill_switch false
adb shell setprop debug.adservices.disable_fledge_enrollment_check true
adb shell device_config put adservices fledge_fetch_custom_audience_enabled true

इन निर्देशों को लागू करने के बाद, इनका इस्तेमाल किया जा सकता है फ़ेच एपीआई का इस्तेमाल करके कॉल कर सकते हैं.

इस फ़्लो का उदाहरण देखने के लिए, फ़ेच कॉल को डेवलपर में जोड़ा गया है GitHub पर प्राइवसी सैंडबॉक्स के सैंपल की रिपॉज़िटरी की ब्रांच की झलक देखें.