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

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

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

बिड रिक्वेस्ट प्रतिनिधित्व

Google Authorized Buyers प्रोटोकॉल

विषय, 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;

OpenRTB प्रोटोकॉल

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

फ़ील्ड Type ब्यौरा
Data.ext.segtax Integer ऐसी टेक्सॉनमी का आईडी जिसे एक ही जगह से रजिस्टर किया गया हो. Topics, विज्ञापन की अलग-अलग कैटगरी का एक वर्शन है, जो हर विषय आईडी का सिमेंटिक मतलब तय करता है. 600 का इस्तेमाल, Chrome के Topics शुरुआती कैटगरी के लिए किया जाता है.
Data.ext.segclass String classifier_version के बराबर.
Data.segment.id String स्ट्रिंग में कास्ट किए गए 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 के 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
  }
]

Google Authorized Buyers प्रोटोकॉल 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"
}

OpenRTB BidRequest:

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

ऊपर दिए गए उदाहरण में, taxonomy_version का मतलब है कि taxonomy_v1 मैपिंग का इस्तेमाल किया गया है. अलग-अलग कैटगरी के आधार पर, ये विषय आईडी इन विषयों से जुड़े होते हैं:

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

उपलब्धता

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