New adapter for Sonobi – how to add:
var adUnits = [{
code: \'/9968336/header-bid-tag-0\',
sizes: [[300, 250], [300, 600]],
bids: [{
bidder: \'sonobi\', // New format
params: {
ad_unit: \'PER SLOT\' // <String> ad unit code
}
},
{
bidder: \'sonobi\', // Old account format
params: {
placement_id: \'PER SLOT\' // <String> placement Id
}
}]
}];
New adapter for Brightcom – how to add
var adUnits = [
{
code: \'/9968336/header-bid-tag-0\',
sizes: [[300, 250], [300, 600]],
bids: [
{
bidder: \'brightcom\',
params: {
tagId: 12345 // Tag ID supplied by Brightcom - brightcom.com
}
}
]
}
];
New adapter for Adequant – how to add:
var adUnits = [{
code: \'/9968336/header-bid-tag-0\',
sizes: [[300, 250], [300, 600]],
bids: [{
bidder: \'adequant\',
params: {
publisher_id: \'1234567\', // REQUIRED int or str publisher ID. To get one, register at https://control.adequant.com
bidfloor: 0.01 // OPTIONAL float bid floor in $ CPM
}
}
]}
}];