Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

...

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'.

Live Demo

Banner - http://cdn.adhigh.net/prebid/index.html

Video - https://cdn.adhigh.net/prebid/vpbid.html

Configuration

Here is a list of the available parameters of the GetIntent adapter:

...

Example

Блок кода
languagejs
titleBanner
linenumberstrue
var adUnits = [{
        code: 'div-gpt-ad-1460505748561-0',
        sizes: [[240, 400]],
        bids: [{
            bidder: 'getintent',
            params: {
               pid: '7',
               tid: 'prebid_test'
            }
        }]
    }];
Блок кода
languagejs
titleVideo
linenumberstrue
var adUnits = [{
    code: 'div-gpt-ad-1460505748561-0',
    sizes: [
        [480, 352]
    ],
    mediaType: 'video',
    bids: [{
        bidder: 'getintent',
        params: {
            pid: '7',
            tid: 'prebid_test'
        }
    }]
}];