Skip to content

Latest commit

 

History

History
91 lines (81 loc) · 1.33 KB

bliinkBidAdapter.md

File metadata and controls

91 lines (81 loc) · 1.33 KB

Overview

Module Name: BLIINK Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected] | [email protected]
gdpr_supported: true
tcf2_supported: true
media_types: banner, video

Description

Module that connects to BLIINK demand sources to fetch bids.

Test Parameters

Sample Banner Ad Unit

const adUnits = [
  {
    code: '/19968336/test',
    mediaTypes: {
      banner: {
        sizes: [[300, 250]]
      }
    },
    bids: [
      {
        bidder: 'bliink',
        params: {
          tagId: '41'
        }
      }
    ]
  }
]

Sample Instream Video Ad Unit

const adUnits = [
  {
    code: '/19968336/prebid_cache_video_adunit',
    sizes: [[640,480]],
    mediaType: 'video',
    mediaTypes: {
      video: {
        context: 'instream',
        playerSize: [[640,480]],
      }
    },
    bids: [
      {
        bidder: 'bliink',
        params: {
          tagId: '41',
        }
      }
    ]
  }
]

Sample outstream Video Ad Unit

const adUnits = [
  {
    code: '/19968336/prebid_cache_video_adunit',
    sizes: [[640,480]],
    mediaType: 'video',
    mediaTypes: {
      video: {
        context: 'outstream',
        playerSize: [[640,480]],
      }
    },
    bids: [
      {
        bidder: 'bliink',
        params: {
          tagId: '41',
        }
      }
    ]
  }
]