使用DFP广告管理系统在网站中呈现广告。在DFP广告管理系统中,我配置了多个广告供应商。为了报告,我需要在生成每个广告位的请求时进行保存。如何在生成每个插槽的请求时找到。我使用DFP多请求模式。
提前致谢
答案 0 :(得分:0)
您可以使用SlotRenderEndedEvent。
文档:https://developers.google.com/doubleclick-gpt/reference#googletageventsslotrenderendedevent
googletag.cmd.push( function() {
googletag.pubads().addEventListener('slotRenderEnded', function(data) {
//saving data..
console.log(new Date().getTime());
console.log(data.creativeId);
});
});