Skip to content

Commit 96585a2

Browse files
noamtzujlaso
authored andcommitted
Ivp 3525 (prebid#3609)
* Update Rise readme * Added support for banner & gpid * suppor banner from version 6.14.0
1 parent 5fcb0cf commit 96585a2

File tree

1 file changed

+41
-17
lines changed

1 file changed

+41
-17
lines changed

dev-docs/bidders/rise.md

Lines changed: 41 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Rise
44
description: Prebid Bidder Adaptor
55
pbjs: true
66
biddercode: rise
7-
media_types: video
7+
media_types: banner, video
88
schain_supported: true
99
gdpr_supported: true
1010
usp_supported: true
@@ -32,31 +32,55 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en
3232

3333
## Example
3434
```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+
{
3756
code: 'dfp-video-div',
38-
sizes: [[640, 480]],
57+
sizes: [
58+
[640, 480]
59+
],
3960
mediaTypes: {
40-
video: {
41-
playerSize: [[640, 480]],
42-
context: 'instream'
43-
}
61+
video: {
62+
playerSize: [
63+
[640, 480]
64+
],
65+
context: 'instream'
66+
}
4467
},
4568
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+
}
5376
}]
54-
}
55-
];
77+
}
78+
];
5679
```
5780

5881
### Configuration
5982
Rise recommends setting UserSync by iframe for monetization.
6083

6184
### Versions
6285
Prebid versions 5.0-5.3 are not supported
86+
Banner >= 6.14.0

0 commit comments

Comments
 (0)