File tree Expand file tree Collapse file tree 1 file changed +73
-0
lines changed Expand file tree Collapse file tree 1 file changed +73
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : bidder
3
+ title : ViewDeos DX
4
+ description : Prebid ViewDeos Bidder Adaptor
5
+ hide : true
6
+ biddercode : viewdeosDX
7
+ media_types : video
8
+ ---
9
+
10
+ ### Bid params
11
+
12
+ {: .table .table-bordered .table-striped }
13
+ | Name | Scope | Description | Example | Type |
14
+ | -------| ----------| ---------------------------------| ----------| -----------|
15
+ | ` aid ` | required | The source ID from Adtelligent. | ` 350975 ` | ` integer ` |
16
+
17
+
18
+
19
+ ### Test Parameters
20
+ ```
21
+ var adUnits = [
22
+
23
+ // Video instream adUnit
24
+ {
25
+ code: 'div-test-div',
26
+ mediaTypes: {
27
+ video: {
28
+ playerSize:[640, 480],
29
+ context: 'instream'
30
+ }
31
+ },
32
+ bids: [{
33
+ bidder: 'viewdeosDX',
34
+ params: {
35
+ aid: 331133
36
+ }
37
+ }]
38
+ },
39
+
40
+ // Video outstream adUnit
41
+ {
42
+ code: 'outstream-test-div',
43
+ mediaTypes: {
44
+ video: {
45
+ playerSize:[640, 480],
46
+ context: 'outstream'
47
+ }
48
+ },
49
+ bids: [{
50
+ bidder: 'viewdeosDX',
51
+ params: {
52
+ aid: 331133
53
+ }
54
+ }]
55
+ },
56
+
57
+ // Banner adUnit
58
+ {
59
+ code: 'div-test-div',
60
+ mediaTypes: {
61
+ banner: {
62
+ sizes:[[300, 250]]
63
+ }
64
+ },
65
+ bids: [{
66
+ bidder: 'viewdeosDX',
67
+ params: {
68
+ aid: 350975
69
+ }
70
+ }]
71
+ }
72
+ ];
73
+ ```
You can’t perform that action at this time.
0 commit comments