mk9-prebid
Version:
Header Bidding Management Library
92 lines (86 loc) • 2.31 kB
Markdown
# Overview
```
Module Name: TheAdx Bidder Adapter
Module Type: Bidder Adapter
Maintainer: prebid@theadx.com
```
# Description
Module that connects to TheAdx demand sources
# Test Parameters
```
var adUnits = [
{
code: 'test-div',
sizes: [640,480],
mediaTypes: {
video: {
sizes: [[640, 480]],
}
},
bids: [
{
bidder: "theadx",
params: {
pid: 1000, // publisher id
wid: 2000, //website id
tagId: 5000, //zone id
}
}
]
},{
code: 'test-div2',
mediaTypes: {
banner: {
sizes: [[320, 50]],
},
},
bids: [
{
bidder: "theadx",
params: {
pid: 1000, // publisher id
wid: 2000, //website id
tagId: 5000, //zone id
}
}
]
},{
code: 'test-div3',
mediaTypes: {
native: {
image: {
required: false,
sizes: [100, 50]
},
title: {
required: false,
len: 140
},
sponsoredBy: {
required: false
},
clickUrl: {
required: false
},
body: {
required: false
},
icon: {
required: false,
sizes: [50, 50]
}
},
},
bids: [
{
bidder: "theadx",
params: {
pid: 1000, // publisher id
wid: 2000, //website id
tagId: 5000, //zone id
}
}
]
}
];
```