Skip to content

Latest commit

 

History

History
111 lines (97 loc) · 2.56 KB

bidtheatreBidAdapter.md

File metadata and controls

111 lines (97 loc) · 2.56 KB

Overview

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

Description

Module that connects to Bidtheatre's demand sources

About us: https://www.bidtheatre.com

The Bidtheatre Bidding adapter requires manual set up before use. Please contact us at [email protected] if you would like to access Bidtheatre demand.

Bid params

Name Scope Description Example
publisherId required Manually set up publisher ID 73b20b3a-12a0-4869-b54e-8d42b55786ee

In addition to the required bid param above, Bidtheatre will also enforce the following requirements

  • All ad slots on a page must belong to the same publisher ID
  • The publisher must provide either a client IP and/or explicit geo data in the request

Test Parameters

Banner

var displayAdUnits = [
    {
        code: 'test-banner',
        mediaTypes: {
            banner: {
                sizes: [[980,240]]
            }
        },
        bids: [
            {
                bidder: 'bidtheatre',
                params: {
                    publisherId: '73b20b3a-12a0-4869-b54e-8d42b55786ee'
                }
            }
        ]
    }
];

Video

var videoAdUnits = [
    {
        code: 'test-video',
        mediaTypes: {
            video: {
                playerSize: [[1280, 720]]
            }
        },
        bids: [
            {
                bidder: 'bidtheatre',
                params: {
                    publisherId: '73b20b3a-12a0-4869-b54e-8d42b55786ee'
                }
            }
        ]
    }
];

Multiformat

var adUnits = [
    {
        code: 'test-banner',
        mediaTypes: {
            banner: {
                sizes: [[980,240]]
            }
        },
        bids: [
            {
                bidder: 'bidtheatre',
                params: {
                    publisherId: '73b20b3a-12a0-4869-b54e-8d42b55786ee'
                }
            }
        ]
    },
    {
        code: 'test-video',
        mediaTypes: {
            video: {
                playerSize: [[1280, 720]]
            }
        },
        bids: [
            {
                bidder: 'bidtheatre',
                params: {
                    publisherId: '73b20b3a-12a0-4869-b54e-8d42b55786ee'
                }
            }
        ]
    }
];