Skip to content

Commit

Permalink
ZEDO - Updated Documentation (prebid#3192)
Browse files Browse the repository at this point in the history
* initial commit

* updated contact and tag details

* changes ti support the renderers

* changes to pass dimId

* fixed names of internal mapping

* added comment

* added gdpr param to request and other fixes

* modified api url

* fix

* fixed the secure api call

* rolled back video event callback till we support it

* updated doc with video details
  • Loading branch information
skazedo authored and AdSpacesDevelopers committed Jan 30, 2019
1 parent e70bfc6 commit e215a13
Showing 1 changed file with 32 additions and 0 deletions.
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
}
}
]
}];
```

0 comments on commit e215a13

Please sign in to comment.