Module Name: AAX Blockmeter Realtime Data Module
Module Type: Rtd Provider
Maintainer: [email protected]
The module enables publishers to measure traffic coming from visitors using adblockers.
AAX can also help publishers monetize this traffic by allowing them to serve acceptable ads to these adblock visitors and recover their lost revenue. Reach out to us to know more.
Build the AAX Blockmeter Realtime Data Module into the Prebid.js package with:
gulp build --modules=aaxBlockmeterRtdProvider,rtdModule
This module is configured as part of the realTimeData.dataProviders
object.
Name | Scope | Description | Example | Type |
---|---|---|---|---|
name |
required | Real time data module name | 'aaxBlockmeter' |
string |
params |
required | Object |
||
params.pub |
required | AAX to share pub ID, Reach out to us to know more! | 'AAX00000' |
string |
params.url |
optional | AAX Blockmeter Script Url. Defaults to 'c.aaxads.com/aax.js?ver=1.2' |
'c.aaxads.com/aax.js?ver=1.2' |
string |
pbjs.setConfig({
"realTimeData": {
"dataProviders": [
{
"name": "aaxBlockmeter",
"params": {
"pub": "AAX00000",
"url": "c.aaxads.com/aax.js?ver=1.2",
}
}
]
}
})