...
Here is a list of the available parameters of the GetIntent adapter:
| Parameter | Obligation | Comment |
|---|---|---|
| pid | required | Publisher ID, which is registered in the GetIntent system |
| tid |
| required | Tag ID of the particular tag | |
| cur | optional | Currency of the bid. Unless provided, the default from Publisher settings will be applied |
| floor | optional | Floor price |
| video | optional | Video Object |
Video Object
| Parameter | Obligation | Type | Comment | Example |
|---|---|---|---|---|
| protocols | optional | array of number | The list of the restricted VAST protocol versions.
| protocols: [4,5,6] |
| mimes | optional | array of string | Array of Mime Type strings | mimes: ["application/javascript"] |
| min_dur | optional | number | Minimal video duration | min_dur: 30 |
| max_dur | optional | number | Maximal video duration | max_dur: 30 |
| min_btr | optional | number | Minimal Video bitrate | min_btr: 256 |
| max_btr | optional | number | Maximal Video bitrate | max_btr: 512 |
| vi_format | optional | number | Video inventory format. Possible values:
| vi_format: 1 |
| api | optional | array of number | API of the inventory. Possible values:
| api: [3,4] |
| skippable | optional | string | Skippability of the inventory. Possible values (case insensitive):
| skippable: "NOT_ALLOW" |
Example
| Блок кода | ||||||
|---|---|---|---|---|---|---|
| ||||||
var adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
sizes: [[240, 400]],
bids: [{
bidder: 'getintent',
params: {
pid: '7',
tid: 'prebid_test'
}
}]
}]; |
...