Skip to content

Commit d5d0c61

Browse files
authored
WURFL Rtd Provider: update configuration section (prebid#5996)
* WURFL Rtd Provider: update configuration section The configuration section has been updated to recommend setting the auctionDelay parameter to at least 500ms, and the waitForIt parameter is now required. * WURFL Rtd Provider: update configuration section The configuration section has been updated to recommend setting the auctionDelay parameter to at least 500ms, and the waitForIt parameter is now required.
1 parent 38444fd commit d5d0c61

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

dev-docs/modules/wurflRtdProvider.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ While the WURFL RTD module enriches the OpenRTB 2.0 payload, it is the responsib
3939
The following scenarios are possible:
4040

4141
{: .table .table-bordered .table-striped }
42+
4243
| | SSP Adapter | SSP Server Side End-Point |
4344
| :------------------------ | :------------ | :--------------------------------------------------------------- |
4445
| SSP adapter is already passing the ORTB2 device to the server (auction endpoint). | No changes required. | Update backend logic to utilize the device data. |
@@ -57,13 +58,15 @@ gulp build --modules="wurflRtdProvider,appnexusBidAdapter,..."
5758

5859
### Configuration
5960

60-
To initialize the WURFL RTD module in Prebid.js, use the `setConfig` function as shown below. The module is configured as part of `realTimeData.dataProviders`
61+
To initialize the WURFL RTD module in Prebid.js, use the `setConfig` function as shown below.
62+
The module is configured within `realTimeData.dataProviders`.
63+
Ensure `waitForIt` is set to `true`. We recommend setting `auctionDelay` to `500 ms` initially,
64+
though lower values may be suitable with fine-tuning.
6165

6266
```javascript
63-
var TIMEOUT = 1000;
6467
pbjs.setConfig({
6568
realTimeData: {
66-
auctionDelay: TIMEOUT,
69+
auctionDelay: 500,
6770
dataProviders: [{
6871
name: 'wurfl',
6972
waitForIt: true,
@@ -78,10 +81,11 @@ pbjs.setConfig({
7881
### Parameters
7982

8083
{: .table .table-bordered .table-striped }
84+
8185
| Name | Type | Description | Default |
8286
| :------------------------ | :------------ | :--------------------------------------------------------------- |:----------------------|
8387
| name | String | Real time data module name | Always set to 'wurfl' |
84-
| waitForIt | Boolean | Set to `true` if an `auctionDelay` is defined (optional) | `false` |
88+
| waitForIt | Boolean | Set to `true` if an `auctionDelay` is defined (required) | `false` |
8589
| params | Object | Configuration parameters for the WURFL RTD module. | |
8690
| params.altHost | String | Alternate host for connecting to WURFL.js | |
8791
| params.debug | Boolean | Enable debug mode. | `false` |

0 commit comments

Comments
 (0)