Skip to content

Latest commit

 

History

History
executable file
·
66 lines (57 loc) · 1.17 KB

saambaaBidAdapter.md

File metadata and controls

executable file
·
66 lines (57 loc) · 1.17 KB

Overview

Module Name: Saambaa Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]

Description

Connects to Saambaa exchange for bids.

Saambaa bid adapter supports Banner and Video ads currently.

For more informatio

Sample Display Ad Unit: For Publishers

var displayAdUnit = [
{
    code: 'display',
    mediaTypes: {
        banner: {
            sizes: [[300, 250],[320, 50]]
        }
    }
    bids: [{
        bidder: 'saambaa',
        params: {
            pubid: '121ab139faf7ac67428a23f1d0a9a71b',
			placement: 1234,
			size: '320x50'
        }
    }]
}];

Sample Video Ad Unit: For Publishers

var videoAdUnit = {
	code: 'video',
	sizes: [320,480],
	mediaTypes: {
	  video: {
	  	playerSize : [[320, 480]], 
	  	context: 'instream',
		  skip: 1,
      mimes : ['video/mp4', 'application/javascript'],
      playbackmethod : [2,6],
      maxduration: 30
	  }
	},
    bids: [
      {
      	bidder: 'saambaa',
      	params: {
        	pubid: '121ab139faf7ac67428a23f1d0a9a71b',
			placement: 1234,
			size: "320x480"
      	}
      }
    ]
  };