Skip to content

Latest commit

 

History

History
57 lines (49 loc) · 952 Bytes

nexx360BidAdapter.md

File metadata and controls

57 lines (49 loc) · 952 Bytes

Overview

Module Name:  Nexx360 Bid Adapter
Module Type:  Bidder Adapter
Maintainer: [email protected]

Description

Connects to Nexx360 network for bids.

To use us as a bidder you must have an account and an active "tagId" on our Nexx360 platform.

Test Parameters

Web

Display

var adUnits = [
   // Banner adUnit
   {
      code: 'banner-div',
      mediaTypes: {
        banner: {
          sizes: [[300, 250], [300,600]]
        }
      },
      bids: [{
         bidder: 'nexx360',
         params: {
            tagId: 'testnexx'
         }
       }]
   },
];

Video Instream

    var videoAdUnit = {
        code: 'video1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            }
        },
        bids: [{
            bidder: 'nexx360',
            params: {
              tagId: 'testnexx'
            }
        }]
    };