The publisher, that aims to use GetIntent Prebid.js adapter must be first registered in the GetIntent system, and receive its unique Publisher ID. It's also possible to configure single currency for all bids. After that, you can start bidding. The name of the adapter - 'getintent'.
Banner - http://cdn.adhigh.net/prebid/index.html
Video - https://cdn.adhigh.net/prebid/vpbid.html
If you are using Prebid.js Video with Adx DFP, you can use next VAST tag URL in Google Creative (http://prebid.org/adops/setting-up-prebid-video-in-dfp.html):
https://px.adhigh.net/p/r?l=%%DESCRIPTION_URL_ESC%%
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 |
| 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" |
var adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
sizes: [[240, 400]],
bids: [{
bidder: 'getintent',
params: {
pid: '7',
tid: 'prebid_test'
}
}]
}]; |
var adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
sizes: [
[480, 352]
],
mediaType: 'video',
bids: [{
bidder: 'getintent',
params: {
pid: '7',
tid: 'prebid_test'
}
}]
}]; |