DFP多请求 - 启动时间

时间:2017-04-17 13:57:20

标签: google-dfp double-click-advertising

使用DFP广告管理系统在网站中呈现广告。在DFP广告管理系统中,我配置了多个广告供应商。为了报告,我需要在生成每个广告位的请求时进行保存。如何在生成每个插槽的请求时找到。我使用DFP多请求模式。

提前致谢

1 个答案:

答案 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);
    });
});