Skip to content

Latest commit

 

History

History
45 lines (41 loc) · 1.16 KB

adWMG.md

File metadata and controls

45 lines (41 loc) · 1.16 KB
layout title description pbjs biddercode media_types gvl_id tcfeu_supported sidebarType
bidder
adWMG
Prebid adWMG Bidder Adapter
true
adWMG
banner
959
true
1

BidParams

{: .table .table-bordered .table-striped }

Name Scope Description Example Type
publisherId required Publisher ID from WMG Dashboard '5cebea3c9eea646c7b623d5e' string
IABCategories optional IAB ad categories for adUnit ['IAB1', 'IAB5'] array of strings
floorCPM optional Floor price for adUnit 0.5 float

Ad Unit Setup for Banner

var adUnits = [
{
  code: 'test-hb-ad-11111-1',
  mediaTypes: {
    banner: {  
      sizes: [
          [300, 250]
      ]
    }   
  }, 
  bids: [{
    bidder: 'adWMG',
    params: {
        publisherId: '5cebea3c9eea646c7b623d5e',
        IABCategories: "['IAB1', 'IAB5']",
        floorCPM: 0.5
    }
  }]
 }
]