Skip to content

Commit 3354455

Browse files
skazedoPedro López Jiménez
authored and
Pedro López Jiménez
committed
ZEDO - Updated Documentation (prebid#3192)
* 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
1 parent 3f0e11d commit 3354455

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

modules/zedoBidAdapter.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ Maintainer: [email protected]
88

99
Module that connects to ZEDO's demand sources.
1010

11+
ZEDO supports both display and video.
1112
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
1213

14+
ZEDO has its own renderer and will render the video unit if not defined in the config.
15+
16+
1317
# Test Parameters
18+
# display
1419
```
20+
1521
var adUnits = [
1622
{
1723
code: 'banner-ad-div',
@@ -28,3 +34,29 @@ For video integration, ZEDO returns content as vastXML and requires the publishe
2834
}
2935
];
3036
```
37+
# video
38+
```
39+
40+
var adUnit1 = [
41+
{
42+
code: 'videoAdUnit',
43+
mediaTypes:
44+
{
45+
video:
46+
{
47+
context: 'outstream',
48+
playerSize: [640, 480]
49+
}
50+
},
51+
bids: [
52+
{
53+
bidder: 'zedo',
54+
params:
55+
{
56+
channelCode: 2264004593,
57+
dimId: 85
58+
}
59+
}
60+
]
61+
}];
62+
```

0 commit comments

Comments
 (0)