You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-docs/modules/intersectionRtdProvider.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
layout: page_v2
3
3
title: Intersection Module
4
4
display_name: Intersection
5
+
5
6
description: Real Time Intersection
6
7
page_type: module
7
8
module_type: rtd
@@ -26,6 +27,7 @@ Implementation works like this:
26
27
1. Build the Intersection module into the Prebid.js package with:
27
28
28
29
```bash
30
+
29
31
gulp build --modules=intersectionRtdProvider&...
30
32
```
31
33
@@ -36,6 +38,7 @@ Implementation works like this:
36
38
This module is configured as part of the `realTimeData.dataProviders` object:
37
39
38
40
```javascript
41
+
39
42
pbjs.setConfig({
40
43
"realTimeData": {
41
44
auctionDelay: 100,
@@ -45,14 +48,18 @@ pbjs.setConfig({
45
48
}]
46
49
}
47
50
});
51
+
48
52
```
49
53
54
+
The optional `waitForIt` flag instructs the module to delay the auction until intersection data is collected for all ad units or the `auctionDelay` timeout is reached. It defaults to `false`.
55
+
50
56
## Output
51
57
52
58
For each bidder, the module adds intersection in a JSON format.
Copy file name to clipboardExpand all lines: dev-docs/modules/userid-submodules/unified.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ The Unified ID privacy is covered under the [TradeDesk Services Privacy Policy](
38
38
| params.url | Required for UnifiedId if not using TradeDesk | String | If specified for UnifiedId, overrides the default Trade Desk URL. | "<https://unifiedid.org/somepath?args>" |
39
39
| value | Optional | Object | Used only if the page has a separate mechanism for storing the Unified ID. The value is an object containing the values to be sent to the adapters. In this scenario, no URL is called and nothing is added to local storage |`{"tdid": "D6885E90-2A7A-4E0F-87CB-7734ED1B99A3"}`|
40
40
41
+
Either `params.partner` or `params.url` must be provided.
42
+
41
43
## Unified ID Examples
42
44
43
45
1. Publisher has a partner ID with The Trade Desk, and is using the default endpoint for Unified ID.
Copy file name to clipboardExpand all lines: identity/sharedid.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ SharedId is a convenient Prebid-owned first party identifier within the [Prebid
21
21
There are multiple ways to integrate SharedId on your site. See the table below for a breakout of options, and the rest of this document for detailed integration instructions.
| 3rd Party Cookie Only | No first party cookie solution. | Some Blocked | Blocked | None | Low |
@@ -149,7 +150,7 @@ removed in Prebid.js 5.0.
149
150
150
151
### Configuration
151
152
152
-
You can find available configuration options for the SharedID module [here](https://docs.prebid.org/dev-docs/modules/userid-submodules/sharedid.html)
153
+
You can find available configuration options for the SharedID module [in the SharedId user ID submodule documentation](https://docs.prebid.org/dev-docs/modules/userid-submodules/sharedid.html)
153
154
154
155
### Privacy Discussion
155
156
@@ -211,13 +212,15 @@ If custom configurations are needed, define the pubcid_options object before inc
211
212
Below are the available configuration options for the PubCID script.
212
213
213
214
{: .table .table-bordered .table-striped }
215
+
214
216
| Parameter Name | Type | Description || Example |
215
217
| --- | --- | --- | --- | --- |
216
218
| create | boolean | If true, then an id is created automatically by the script if it's missing. Default is true. If your server has a component that generates the id instead, then this should be set to false ||`true`|
217
219
| expInterval | decimal | Expiration interval in minutes. Default is 525600, or 1 year ||`525600`|
218
220
| extend | boolean | If true, the the expiration time is automatically extended whenever the script is executed even if the id exists already. Default is true. If false, then the id expires from the time it was initially created. | For publisher server support only. If true, the publisher's server will create the (pubcid) cookie. Default is true. |`true`|
219
221
| pixelUrl | string (optional) | For publisher server support only. Where to call out to for a server cookie. ||`/wp-json/pubcid/v1/extend/`|
220
222
| type | string | Type of storage. It's possible to specify one of the following: 'html5', 'cookie'. Default is 'html5' priority, aka local storage, and fall back to cookie if local storage is unavailable. | If true, the expiration time of the stored IDs will be refreshed during each page load. Default is false. |`cookie`|
223
+
| inserter | string (optional) | Adds this value into the EID object `inserter` field. ||`myPartner`|
0 commit comments