Custom targeting values from multiple bids with the same key are concatenated and set with the ad server, with
{
enableSendAllBids: false,
targetingControls: {
alwaysIncludeDeals: true
},
sendBidsControl: {
bidLimit: 1
}
}
bid1: {
'cpm': 1.0,
'adserverTargeting': {
'foo': 'bar',
},
},
bid2: {
'cpm': 0.5,
'adserverTargeting': {
'foo': 'baz',
},
},
I would say the expected result targeting would be foo: bar, however the resulting targeting is foo: bar,baz. The test assertions in targeting_spec.js seem to indicate this is not the intended behavior
Custom targeting values from multiple bids with the same key are concatenated and set with the ad server, with
I would say the expected result targeting would be
foo: bar, however the resulting targeting isfoo: bar,baz. The test assertions intargeting_spec.jsseem to indicate this is not the intended behavior