RTB के लिए Chrome के विषयों का प्रयोग

Chrome ने Privacy Sandbox के तहत, एक्सपेरिमेंट के तौर पर Topics API का सुझाव दिया था. Topics API, वेब पेज पर तीसरे पक्ष के कॉलर (विज्ञापन टेक्नोलॉजी से जुड़ी सेवा देने वाली कंपनियों के साथ-साथ) को विज्ञापन के ऐसे विषय उपलब्ध कराता है जिनमें पेज पर आने वाले व्यक्ति की दिलचस्पी हो सकती है. विषयों से, मौजूदा पेज के कॉन्टेक्स्ट के बारे में ज़्यादा जानकारी मिल सकती है. साथ ही, ये रुचि के हिसाब से विज्ञापन दिखाने में मददगार हो सकते हैं.

Topics API एक्सपेरिमेंट, बिड रिक्वेस्ट में आरटीबी पार्टनर के लिए उपलब्ध है. विषय, सभी आरटीबी पार्टनर को उपलब्धता के आधार पर भेजे जाते हैं.

बिड रिक्वेस्ट के बारे में जानकारी

OpenRTB प्रोटोकॉल

विषयों को OpenRTB BidRequest.user.data मैसेज में सेगमेंट के तौर पर दिखाया जाता है.

फ़ील्ड टाइप ब्यौरा
Data.ext.segtax पूर्णांक सेंट्रली रजिस्टर की गई टैक्सोनॉमी का आईडी. विषयों के लिए, यह विज्ञापन टैक्सोनॉमी का वह वर्शन है जो हर विषय के आईडी का सिमैंटिक मतलब तय करता है. 600 का इस्तेमाल, Chrome के Topics की शुरुआती टैक्सोनॉमी के लिए किया जाता है.
Data.ext.segclass स्ट्रिंग classifier_version के बराबर.
Data.segment.id स्ट्रिंग यह id को स्ट्रिंग में बदलने के बराबर है.

Data.ext, BidRequest.user.data मैसेज का एक्सटेंशन है. यह एक्सटेंशन, प्रोटोकॉल के ओपन बीटा वर्शन में उपलब्ध है.

यहां इसकी परिभाषा दी गई है:

// Ad Exchange extensions for the Data object.
message DataExt {
  // The ID for a taxonomy that is registered centrally. Used to define the
  // namespace and semantic meaning of the segment IDs. See
  // https://github.com/InteractiveAdvertisingBureau/openrtb/blob/master/extensions/community_extensions/segtax.md#enumeration-of-taxonomies
  // for the enumeration of the taxonomies that this value can take. Currently
  // only Chrome Topics API taxonomy (segtax=600) is supported.
  optional int32 segtax = 1;

  // The version of the classifier which produced the segment IDs within the
  // taxonomy. For example, in the case of Chrome Topics API (segtax=600), this
  // is the version of the classifier used by the browser to map hostnames to
  // topics in the taxonomy.
  optional string segclass = 2;
}

Google आरटीबी प्रोटोकॉल (अब सेवा में नहीं है)

विषयों को BidRequest मैसेज में topics फ़ील्ड में दिखाया जाता है. यह फ़ील्ड, प्रोटोकॉल के ओपन बीटा वर्शन में उपलब्ध है.

यहां इसकी परिभाषा दी गई है:

  // Experimental field; subject to change.
  // A coarse-grained topic that a website visitor might currently be interested
  // in based on recent browsing activity. See
  // https://developer.chrome.com/docs/privacy-sandbox/topics/ and/or
  // https://privacysandbox.com/intl/en_us/proposals/topics/ for more
  // information about the Topics API. Reach out to your account manager to
  // participate in the Topics API experiment.
  message Topic {
    // The value of a topic ID. A numerical identifier corresponding to a
    // coarse-grained advertising topic. See
    // https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v1.md
    // for a list of topics in the initial taxonomy.
    optional int32 id = 1;
    // The version of the advertising taxonomy which defines the semantic
    // meaning of each topic ID for the topics, for example "v1".
    optional string taxonomy_version = 2;
    // The version of the classifier used by the browser to map hostnames to
    // topic IDs in the taxonomy.
    optional string classifier_version = 3;
  }

  // The list of topics that a website visitor might currently be interested in
  // inferred by the browser based on recent browsing activity. See
  // https://developer.chrome.com/docs/privacy-sandbox/topics/ and/or
  // https://privacysandbox.com/intl/en_us/proposals/topics/ for more
  // information about Topics API.
  repeated Topic topics = 74;

उदाहरण

यहां एक उदाहरण दिया गया है, जिसमें बताया गया है कि Google Authorized Buyers और OpenRTB प्रोटोकॉल, Chrome Topics API से मिले विषयों को कैसे दिखाते हैं.

Chrome Topics API का जवाब, जिसे document.browsingTopics() ने दिखाया है:

[
  {
    "modelVersion": "classifier_v1",
    "taxonomyVersion": "taxonomy_v1",
    "topic": 3
  },
  {
    "modelVersion": "classifier_v1",
    "taxonomyVersion": "taxonomy_v1",
    "topic": 44
  },
  {
    "modelVersion": "classifier_v1",
    "taxonomyVersion": "taxonomy_v1",
    "topic": 59
  }
]

OpenRTB BidRequest:

{
  "user": {
    "data": [
      {
        "ext": {
          "segtax": 600,
          "segclass": "classifier_v1"
        },
        "segment": [
          { "id": "3" },
          { "id": "44" },
          { "id": "59" }
        ]
      }
    ]
  }
}

Google आरटीबी प्रोटोकॉल (अब काम नहीं करता) BidRequest:

topics {
  id: 3
  taxonomy_version: "taxonomy_v1"
  classifier_version: "classifier_v1"
}
topics {
  id: 44
  taxonomy_version: "taxonomy_v1"
  classifier_version: "classifier_v1"
}
topics {
  id: 59
  taxonomy_version: "taxonomy_v1"
  classifier_version: "classifier_v1"
}

ऊपर दिए गए Chrome Topics API के उदाहरण में, taxonomy_version का मतलब है कि taxonomy_v1 मैपिंग का इस्तेमाल किया गया है. टैक्सोनॉमी के आधार पर, ये विषय आईडी इन विषयों से मेल खाते हैं:

विषय का आईडी विषय की वैल्यू
3 /कला और मनोरंजन/कॉमिक्स
44 /Arts & Entertainment/Opera
59 /ऑटो और वाहन/क्लासिक वाहन

उपलब्धता

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