| layout | page_v2 |
|---|---|
| title | LiveIntent RTD Module |
| display_name | LiveIntent RTD Module |
| description | LiveIntent Real Time Data Module |
| page_type | module |
| module_type | rtd |
| module_code | liveIntentRtdProvider |
| enable_download | true |
| vendor_specific | true |
| sidebarType | 1 |
{% include dev-docs/loads-external-javascript.md %}
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.
-
Build the LiveIntent RTD Module into the Prebid.js package with:
gulp build --modules=rtdModule,liveIntentRtdProvider,...
-
Use
setConfigto instruct Prebid.js to initialize the LiveIntent RTD module, as specified below.
pbjs.setConfig({
realTimeData: {
auctionDelay: 1000,
dataProviders: [
{
name: "liveintent",
waitForIt: true
}
]
}
});{: .table .table-bordered .table-striped }
| 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 |