An open source library for publishers and third party container solution providers to integrate with AOL's supply side platform for header bidding.
- Install package(
npm install aol-hb
) or build source file. - Load source file.
- Define bid request configuration and an array of placement configurations.
- Pass defined objects in the method
aolhb.init()
.
<script src="node_modules/aol-hb/dist/aol-hb.min.js"></script>
<script>
var bidRequestConfig = {
region: 'US',
network: '9599.1',
bidderKey: 'aolbid',
aliasKey: 'mpalias',
userSyncOn: 'adRender',
onBidResponse: function(response) {
console.log('CPM: ' + response.cpm);
console.log('Ad code: ' + response.ad);
console.log('Alias: '+ response.alias);
},
onAllBidResponses: function (bidResponses) {
console.log('Bid responses array: ', bidResponses);
}
};
var placementsConfigs = [{
placement: 3675022,
alias: '728x90atf',
adContainerId: 'div-gpt-ad-1438955597722-1',
bidfloor: '0.1'
}, {
placement: 3675026,
alias: '300x250atf',
adContainerId: 'div-gpt-ad-1438955597722-0',
}];
window.aolhb.init(bidRequestConfig, placementsConfigs);
</script>
<script>
var placementConfig = {
placement: 3675024,
alias: '728x90btf',
adContainerId: 'div-gpt-ad-1439394117151-1'
};
window.aolhb.addNewAd(placementConfig);
</script>
-
aolhb.init()
Library initialization method. It sends bid request for each placement based on configs passed as params.
Params:bidRequestConfig
,placementsConfigs
-
aolhb.addNewAd()
The method sends bid request for new placement based on placement config passed as a param. It can be used
for adding new ads in runtime.
Params:placementsConfigs
-
aolhb.refreshAd()
Resend bid request for particular placement by its alias.
Params:placementAlias
-
aolhb.renderAd()
Render an ad by placement alias.
Params:placementAlias
-
network
Required String. Network identifier. Format: 'networkId.subNetworkId'
Sub network part can be missed
Examples:9544.99
,9568
-
region
Optional String (defaults toUS
). The region for resolving host server.
Supported values:US
,EU
,Asia
-
onBidResponse
Optional. Function. Сalls for each bid response. -
onAllBidResponses
Optional. Function. Сalls when we've got responses for each bid request. -
bidderKey
Optional. String (defaults toaolbid
). Bidder key. -
aliasKey
Optional. String (defaults tompalias
). Alias key. -
userSyncOn
Optional. String (defaults tobidResponse
).
Supported values:bidResponse
,adRender
-
gdprApplies
Optional. Boolean (defaults totrue
). GDPR applies.
-
placement
Required String. Placement identifier. -
alias
Required String. Placement alias. -
adContainerId
Required String. Id of element in the DOM where an ad will be rendered. -
bidfloor
Optional String. Floor proice for the placement.
$ git clone [email protected]:aol/aol-hb.js.git
$ cd aol-hb.js
$ npm install
To build the project type in the terminal:
$ gulp build
build results will be placed in /dist directory. It contains:
- aol-hb.js - source file
- aol-hb.min.js - minified source file.
For running unit tests type in the terminal:
$ gulp test-unit
Preconditions:
- Selenium server with chrome driver should be started
For running e2e tests type in the terminal:
$ gulp test-e2e
For opening e2e test pages in browsers type in the terminal:
$ gulp test-e2e-manual