Skip to content

Latest commit

 

History

History
50 lines (45 loc) · 960 Bytes

adkernelAdnBidAdapter.md

File metadata and controls

50 lines (45 loc) · 960 Bytes

Overview

Module Name: AdKernel ADN Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]

Description

Connects to AdKernel Ad Delivery Network Banner and video formats are supported.

Test Parameters

var adUnits = [{
    code: 'banner-ad-div',
    mediaTypes: {
        banner: {
            sizes: [
                [300, 250],
                [300, 200] // banner sizes
            ],
        }
    },
    bids: [{
        bidder: 'adkernelAdn',
        params: {
            pubId: 50357,
            host: 'dsp-staging.adkernel.com'
        }
    }]
}, {
    code: 'video-ad-player',
    mediaTypes: {
        video: {
            context: 'instream', // or 'outstream'
            playerSize: [640, 480] // video player size        	
        }
    },
    bids: [{
        bidder: 'adkernelAdn',
        params: {
            pubId: 50357,
            host: 'dsp-staging.adkernel.com'
        }
    }]
}];