-
Notifications
You must be signed in to change notification settings - Fork 236
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
Can I display multiple advertisers in one FrencedFrame in one auction? #306
Comments
Currently the only way to do with is via component ads (not to be confused with component auctions). To do this, all ads must be in the same interest group. The way to do this would be to do: navigator.joinAdInterestGroup({ And then have that IG's generateBid() script return something like: { ... Then, if that ad wins, ad_framer.html would be loaded in a top-level fenced frame, and could create three nested fenced frames of its own, and load navigator.adAuctionComponents(3)[0] in one, navigator.adAuctionComponents(3)[1] in the next, and navigator.adAuctionComponents(3)[2] in the last (if there were 3 components and 3 fenced frames). Those would all be URN URLs, so the top-level framing URL wouldn't know which ads it was dispalying. FLEDGE does not currently auctions with multiple "winners" - doing so would likely require a fair bit of design work, and thinking about what potential leaks that would ad. |
When displaying multiple advertisements from the same advertiser, the method you have indicated seems to work fine. If we call runAdAuction multiple times, the performance of the front end may drop and |
Yes, multiple ad slots requires multiple auctions. Ad slots aren't all of equal value, so it's likely that interest groups will want to bid different amounts for them. |
Thank you @MattMenke2 . The three ad positions within the rectangle area are similar in value and auctionConfig = { Example InterstGroupB(auctionSignals ad size=native) InterstGroupA(auctionSignals ad size=300x250) Display of auctioned ads in a fenced frame or DSP C:bid N Advertiser F https://edition.cnn.com/2023/01/04/tech/tom-zhu-tesla-china-chief-profile-intl-hnk/index.html |
Is it possible to display three native ads in each position (top, middle and bottom) in one auction on a rectangular (300x250) FencedFrame in FLEDGE?
Also, is it possible to mix interest groups and context groups and display them in one FencedFrame?
The text was updated successfully, but these errors were encountered: