Skip to content

Commit

Permalink
yieldmo: multiple changes (#3246)
Browse files Browse the repository at this point in the history
* multiple changes
* schain support for video ads
* device.ip support
* gpid support

* device.ip support cleaned up
  • Loading branch information
ym-abaranov committed Sep 29, 2021
1 parent b892f42 commit d096299
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions dev-docs/bidders/yieldmo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Yieldmo
description: Prebid Yieldmo Bidder Adaptor
biddercode: yieldmo
media_types: banner, video
userIds: pubCommonId, unifiedId, criteo
userIds: pubCommonId, unifiedId, criteo, sharedId
gdpr_supported: true
usp_supported: true
schain_supported: true
Expand All @@ -14,7 +14,7 @@ pbs: true
---

# Registration
## In order to use Yieldmo adapter please reach out to your Yieldmo account's person or support@yieldmo.com for more information.
### Note: In order to use Yieldmo adapter please reach out to your Yieldmo account's person or support@yieldmo.com for more information.
<br/>
### Bid Params

Expand Down Expand Up @@ -52,7 +52,6 @@ In addition, Yieldmo adapter relies on parameters specified in the `mediaTypes.v
|-------------------|----------|--------------------------------------------------------|-----------------|------------------|
| `playerSize` | required | Width and height of the player | `[640, 480]` | `Array<integer>` |
| `context` | required | `instream` or `outstream ` are only supported | `instream` | `string` |

### Example of in-stream Video Ad-unit
```javascript
var videoAdUnits = [{
Expand All @@ -77,7 +76,7 @@ var videoAdUnits = [{
bids: [{
bidder: 'yieldmo',
params: {
placementId: '1524592390382976659' // required
placementId: '1524592390382976659',// required,
}
}]
}];
Expand All @@ -88,23 +87,23 @@ var videoAdUnit = [{
code: 'div-video-ad-1234567890',
mediaTypes: {
video: {
playerSize: [640, 480], // required
playerSize: [640, 480], // required
context: 'outstream',
mimes: ['video/mp4'], // required, array of strings
placement: 3, // required, integer ( 3,4,5 )
maxduration: 30, // required, integer
protocols: [2, 3], // required, array of integers
api: [2, 3], // required, array of integers
playbackmethod: [1,2] // required, array of integers
mimes: ['video/mp4'], // required, array of strings
placement: 3, // required, integer ( 3,4,5 )
maxduration: 30, // required, integer
protocols: [2, 3], // required, array of integers
api: [2, 3], // required, array of integers
playbackmethod: [1,2] // required, array of integers
}
},
bids: [{
bidder: 'yieldmo',
params: {
placementId: '1524592390382976659' // required
placementId: '1524592390382976659', // required
}
}]
}];
```

> Prebid out-stream demo - https://prebid-outstream-qa.yieldmo.com/prebid-outstream.html
> [Prebid out-stream demo](https://prebid-outstream-qa.yieldmo.com/prebid-outstream.html)

0 comments on commit d096299

Please sign in to comment.