Skip to content

Commit

Permalink
Ivp 3525 (#3609)
Browse files Browse the repository at this point in the history
* Update Rise readme

* Added support for banner & gpid

* suppor banner from version 6.14.0
  • Loading branch information
noamtzu authored Mar 8, 2022
1 parent bac8ea0 commit 6e9e008
Showing 1 changed file with 41 additions and 17 deletions.
58 changes: 41 additions & 17 deletions dev-docs/bidders/rise.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Rise
description: Prebid Bidder Adaptor
pbjs: true
biddercode: rise
media_types: video
media_types: banner, video
schain_supported: true
gdpr_supported: true
usp_supported: true
Expand Down Expand Up @@ -32,31 +32,55 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en

## Example
```javascript
var adUnits = [
{
var adUnits = [{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [
[300, 250],
[728, 90]
]
}
},
bids: [{
bidder: 'rise',
params: {
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 0.05, // Optional
placementId: '12345678', // Optional
testMode: false // Optional
}
}]
},
{
code: 'dfp-video-div',
sizes: [[640, 480]],
sizes: [
[640, 480]
],
mediaTypes: {
video: {
playerSize: [[640, 480]],
context: 'instream'
}
video: {
playerSize: [
[640, 480]
],
context: 'instream'
}
},
bids: [{
bidder: 'rise',
params: {
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 5.00, // Optional
placementId: '12345678', // Optional
testMode: false // Optional
}
bidder: 'rise',
params: {
org: '56f91cd4d3e3660002000033', // Required
floorPrice: 5.00, // Optional
placementId: '12345678', // Optional
testMode: false // Optional
}
}]
}
];
}
];
```

### Configuration
Rise recommends setting UserSync by iframe for monetization.

### Versions
Prebid versions 5.0-5.3 are not supported
Banner >= 6.14.0

0 comments on commit 6e9e008

Please sign in to comment.