Skip to content

Latest commit

 

History

History
46 lines (42 loc) · 774 Bytes

adnowBidAdapter.md

File metadata and controls

46 lines (42 loc) · 774 Bytes

Overview

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

Description

AdNow Bidder Adapter for Prebid.js. Banner and Native format are supported. Please use adnow as the bidder code.

Test Parameters

    const adUnits = [{
      code: 'test',
      mediaTypes: {
        banner: {
          sizes: [[300, 250]]
        }
      },
      bids: [{
        bidder: 'adnow',
        params: {
          codeId: 794934
        }
      }]
    }, {
      code: 'test',
      mediaTypes: {
        native: {
          image: {
            sizes: [200, 200]
          }
        }
      },
      bids: [{
        bidder: 'adnow',
        params: {
          codeId: 794934
        }
      }]
    }];