-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prebid.js adUnit sizes per bidders #8077
Comments
Please describe the use case @nicoUnify . Why can't the bidders just not bid on sizes they're not interested in? Some bid adapters still support bidder-level overrides, but many no longer do. We generally consider this a good thing. But assuming there is an edge case here, yes, 'twin' adunits is the only answer at this time. The last time we had a community member who required a level of complexity like this, the Advanced Size Mapping module was developed. We would consider community contributions that extend the existing module to add 'sizes' to the bidder-level sizeConfig.
|
Discussed in committee:
|
closing as stale; if you want to pass special information to a bidder, it generally seems best to do it via a bidder parameter instead of hacking it onto the size array with an indicator size. Even if the bidder doesnt take any parameters, you can now pass info for a specific auction in the ortb2 object if they take that via #8338 |
When creating an adUnit for a given ad slot, I figure out that each bidders set in
bid
Array inherit from the sizes set inmediaTypes
property.I wish to set different sizes per bidder for the same ad slot.
Is the "twin AdUnit Codes" method the only way to do this ? (= one adUnit per bidder with the same code and corresponding sizes).
With this method, if an ad slot require 15 bidders, I will potentially push 15 adUnits for 1 ad slot.
Depending on the number of slots in the page, the number of adunits sent will be huge.
Or is there another way to setup sizes per bidder ?
The text was updated successfully, but these errors were encountered: