Skip to content
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

ZEDO - Updated Documentation #3192

Merged
merged 23 commits into from
Oct 22, 2018
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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
32 changes: 32 additions & 0 deletions modules/zedoBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ Maintainer: prebidsupport@zedo.com

Module that connects to ZEDO's demand sources.

ZEDO supports both display and video.
For video integration, ZEDO returns content as vastXML and requires the publisher to define the cache url in config passed to Prebid for it to be valid in the auction

ZEDO has its own renderer and will render the video unit if not defined in the config.


# Test Parameters
# display
```
var adUnits = [
{
code: 'banner-ad-div',
Expand All @@ -28,3 +34,29 @@ For video integration, ZEDO returns content as vastXML and requires the publishe
}
];
```
# video
```
var adUnit1 = [
{
code: 'videoAdUnit',
mediaTypes:
{
video:
{
context: 'outstream',
playerSize: [640, 480]
}
},
bids: [
{
bidder: 'zedo',
params:
{
channelCode: 2264004593,
dimId: 85
}
}
]
}];
```