Skip to content

Viewdeos DX adapter doc #1511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 6, 2019
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions dev-docs/bidders/viewdeosDX.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
layout: bidder
title: ViewDeos DX
description: Prebid ViewDeos Bidder Adaptor
hide: true
biddercode: viewdeosDX
media_types: video
---

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------|----------|---------------------------------|----------|-----------|
| `aid` | required | The source ID from Adtelligent. | `350975` | `integer` |



### Test Parameters
```
var adUnits = [

// Video instream adUnit
{
code: 'div-test-div',
sizes: [[640, 480]],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is a deprecated attribute. the recommendation is to put the player size in mediaTypes.video.playerSize: [640, 480]

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed!

mediaTypes: {
video: {
context: 'instream'
}
},
bids: [{
bidder: 'viewdeosDX',
params: {
aid: 331133
}
}]
},

// Video outstream adUnit
{
code: 'outstream-test-div',
sizes: [[640, 480]],
mediaTypes: {
video: {
context: 'outstream'
}
},
bids: [{
bidder: 'viewdeosDX',
params: {
aid: 331133
}
}]
},

// Banner adUnit
{
code: 'div-test-div',
sizes: [[300, 250]],
bids: [{
bidder: 'viewdeosDX',
params: {
aid: 350975
}
}]
}
];
```