Skip to content

Latest commit

 

History

History
63 lines (56 loc) · 1.27 KB

File metadata and controls

63 lines (56 loc) · 1.27 KB
layout bidder
title Asterio
description Prebid Asterio Bidder Adapter
biddercode asterio
pbjs true
pbs false
media_types banner, video
schain_supported true
sidebarType 1

Bid Params

{: .table .table-bordered .table-striped }

Name Scope Description Example Type
adUnitToken required Ad unit token provided by Asterio. 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' string
pos optional Ad position hint. Allowed values follow OpenRTB position conventions, e.g. above the fold: 1, below the fold: 3, middle of the fold: 7. 1 integer

Banner Test Ad Unit

var adUnits = [{
  code: 'test-banner',
  mediaTypes: {
    banner: {
      sizes: [[300, 250]]
    }
  },
  bids: [{
    bidder: 'asterio',
    params: {
      adUnitToken: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
    }
  }]
}];

Video Test Ad Unit

var adUnits = [{
  code: 'test-video',
  mediaTypes: {
    video: {
      context: 'outstream',
      playerSize: [640, 360],
      mimes: ['video/mp4'],
      protocols: [2, 3],
      playbackmethod: [2],
      plcmt: 4
    }
  },
  bids: [{
    bidder: 'asterio',
    params: {
      adUnitToken: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
    }
  }]
}];