You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hb_cache_id is not set as parameter on DFP video request in Prebid 2.7. Works in Prebid 2.3. I can see that videoCacheKey is set properly on bidResponse.
This results in making a request to https://prebid.adnxs.com/pbc/v1/cache?uuid= which is invalid as it is missing the uuid. This then causes a VAST 301 error.
Steps to reproduce
I'm pretty sure it is happening for multiple partners, but I'm testing with oneVideo right now and can confirm it there.
var adTagUrl = pbjs.adServers.dfp.buildVideoUrl({
adUnit: videoAdUnit,
params: params,
bid: bidWithHighestCpm})
Test page
Expected results
Actual results
Platform details
Prebid 2.7
Other information
The text was updated successfully, but these errors were encountered:
@nanek Thanks for reporting this. We are working on this and will be fixed in next release. We will be adding both the keys back in dfp module.
Summary of what happened
hb_uuid and hb_cache_id are both standard keys for video. In 2.4 and before, if publisher overwrites the standard keys using pbjs.bidderSettings then both these were getting set to undefined due to the order in which some core operations were getting executed.
Hence we were adding both hb_uuid and hb_cache_id with the targeting data from dfp module.
Now in 2.5 we fixed bug explained above. So if you are to overwrite standard keys, you should also add
Type of issue
bug
Description
hb_cache_id is not set as parameter on DFP video request in Prebid 2.7. Works in Prebid 2.3. I can see that videoCacheKey is set properly on bidResponse.
I think it might be related to https://github.com/prebid/Prebid.js/pull/3605/files#diff-f9e9cab460a9c83c3110b246bd4326e2L165
This results in making a request to
https://prebid.adnxs.com/pbc/v1/cache?uuid=
which is invalid as it is missing the uuid. This then causes a VAST 301 error.Steps to reproduce
I'm pretty sure it is happening for multiple partners, but I'm testing with oneVideo right now and can confirm it there.
Test page
Expected results
Actual results
Platform details
Prebid 2.7
Other information
The text was updated successfully, but these errors were encountered: