File tree 1 file changed +41
-17
lines changed
1 file changed +41
-17
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ title: Rise
4
4
description : Prebid Bidder Adaptor
5
5
pbjs : true
6
6
biddercode : rise
7
- media_types : video
7
+ media_types : banner, video
8
8
schain_supported : true
9
9
gdpr_supported : true
10
10
usp_supported : true
@@ -32,31 +32,55 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en
32
32
33
33
## Example
34
34
``` javascript
35
- var adUnits = [
36
- {
35
+ var adUnits = [{
36
+ code: ' banner-div' ,
37
+ mediaTypes: {
38
+ banner: {
39
+ sizes: [
40
+ [300 , 250 ],
41
+ [728 , 90 ]
42
+ ]
43
+ }
44
+ },
45
+ bids: [{
46
+ bidder: ' rise' ,
47
+ params: {
48
+ org: ' 56f91cd4d3e3660002000033' , // Required
49
+ floorPrice: 0.05 , // Optional
50
+ placementId: ' 12345678' , // Optional
51
+ testMode: false // Optional
52
+ }
53
+ }]
54
+ },
55
+ {
37
56
code: ' dfp-video-div' ,
38
- sizes: [[640 , 480 ]],
57
+ sizes: [
58
+ [640 , 480 ]
59
+ ],
39
60
mediaTypes: {
40
- video: {
41
- playerSize: [[640 , 480 ]],
42
- context: ' instream'
43
- }
61
+ video: {
62
+ playerSize: [
63
+ [640 , 480 ]
64
+ ],
65
+ context: ' instream'
66
+ }
44
67
},
45
68
bids: [{
46
- bidder: ' rise' ,
47
- params: {
48
- org: ' 56f91cd4d3e3660002000033' , // Required
49
- floorPrice: 5.00 , // Optional
50
- placementId: ' 12345678' , // Optional
51
- testMode: false // Optional
52
- }
69
+ bidder: ' rise' ,
70
+ params: {
71
+ org: ' 56f91cd4d3e3660002000033' , // Required
72
+ floorPrice: 5.00 , // Optional
73
+ placementId: ' 12345678' , // Optional
74
+ testMode: false // Optional
75
+ }
53
76
}]
54
- }
55
- ];
77
+ }
78
+ ];
56
79
```
57
80
58
81
### Configuration
59
82
Rise recommends setting UserSync by iframe for monetization.
60
83
61
84
### Versions
62
85
Prebid versions 5.0-5.3 are not supported
86
+ Banner >= 6.14.0
You can’t perform that action at this time.
0 commit comments