我正在尝试定位特定的广告素材,但不确定如何可靠地访问creativeId
。似乎如果设置了creativeId
,那么它将与sourceAgnosticCreativeId
...
creativeId
和sourceAgnosticCreativeId
但又不同的情况?sourceAgnosticCreativeId
吗?sourceAgnosticCreativeId
在什么条件下为空?我在lineItemId
和sourceAgnosticLineItemId
周围有相同类型的问题(并怀疑答案会是相同的)。
在这两种情况下,我都发现预览广告素材时不会通过creativeId
或lineItemId
(或sourceAgnostic*
)……这很棘手!
googletag.cmd.push(function() {
googletag.pubads().addEventListener('slotRenderEnded', function(event) {
// neatly logs all the Ids I'm interested in:
console.log(event.slot.getResponseInformation());
});
});
creativeId
:所呈现的预订广告的广告素材ID。对于空广告位,回填广告或由pubads服务以外的服务提供的广告素材,该值为null。
sourceAgnosticCreativeId
:所呈现的预订或回填广告的广告素材ID。如果广告不是预留或订单项回填,也不是由pubads服务以外的服务提供的广告素材,则该值为null。