Skip to content

Latest commit

 

History

History
70 lines (62 loc) · 1.46 KB

limelightDigitalBidAdapter.md

File metadata and controls

70 lines (62 loc) · 1.46 KB

Overview

Module Name: Limelight Digital Exchange Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]

Description

Module that connects to Limelight Digital Exchange's demand sources

Test Parameters for banner

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'
        }
    }]
}];

Test Parameters for video

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'
        }
    }]
}];

Configuration

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'
    }
});