I was wondering, our desktop setup is already done so the dfp key hb_pb
for desktop can not be changed anymore
So the price targeting for hb_pb
is returning a third party creative with this code:
<script>
var w = window;
for (i = 0; i < 10; i++) {
w = w.parent;
if (w.pbjs) {
try {
w.pbjs.renderAd(document, '%%PATTERN:hb_adid%%');
break;
} catch (e) {
continue;
}
}
}
</script>
However the mobile setup requires this creative:
<script type="text/javascript" src = "//acdn.adnxs.com/mobile/prebid/pbm.js"></script>
<script type="text/javascript">
pbm.showAdFromCacheId({
admCacheID : '%%PATTERN:hb_cache_id%%'
});
</script>
Now the problem is that both setups use hb_pb
as their targeting.
Is there any way to set the targeting key that Prebid Mobile is sending to DFP?