Module Name: Limelight Digital Exchange Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]
Module that connects to Limelight Digital Exchange's demand sources
var adUnits = [{
code: 'placementCode',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [{
bidder: 'limelightDigital',
params: {
host: 'exchange-9qao.ortb.net',
adUnitId: 0,
adUnitType: 'banner',
custom1: 'custom1',
custom2: 'custom2',
custom3: 'custom3',
custom4: 'custom4',
custom5: 'custom5'
}
}]
}];
var videoAdUnit = [{
code: 'video1',
sizes: [[300, 250]],
bids: [{
bidder: 'limelightDigital',
params: {
host: 'exchange-9qao.ortb.net',
adUnitId: 0,
adUnitType: 'video',
custom1: 'custom1',
custom2: 'custom2',
custom3: 'custom3',
custom4: 'custom4',
custom5: 'custom5'
}
}]
}];
The Limelight Digital Exchange Bidder Adapter expects Prebid Cache(for video) to be enabled so that we can store and retrieve a single vastXml.
pbjs.setConfig({
usePrebidCache: true,
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache'
}
});