Disclosure: This module loads external code that is not open source and has not been reviewed by Prebid.org.
The LiveIntent RTD module loads a script to extract segment information from bid requests. These segments are resolved using the LiveIntent user ID module and are then supplied as user data segments in OpenRTB.
Please visit LiveIntent for more information.
1) Build the LiveIntent RTD Module into the Prebid.js package with:
```bash
gulp build --modules=rtdModule,liveIntentRtdProvider,...
```
2) Use setConfig
to instruct Prebid.js to initialize the LiveIntent RTD module, as specified below.
pbjs.setConfig({
realTimeData: {
auctionDelay: 1000,
dataProviders: [
{
name: "liveintent",
waitForIt: true
}
]
}
});
Name | Type | Description | Required | Notes |
---|---|---|---|---|
name |
String | Real time data module name | yes | Always ‘liveIntent’ |
waitForIt |
Boolean | Should be true if there’s an auctionDelay defined (recommended) |
no | Default false |