Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions dev-docs/modules/intersectionRtdProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: page_v2
title: Intersection Module
display_name: Intersection

description: Real Time Intersection
page_type: module
module_type: rtd
Expand All @@ -26,6 +27,7 @@ Implementation works like this:
1. Build the Intersection module into the Prebid.js package with:

```bash

gulp build --modules=intersectionRtdProvider&...
```

Expand All @@ -36,6 +38,7 @@ Implementation works like this:
This module is configured as part of the `realTimeData.dataProviders` object:

```javascript

pbjs.setConfig({
"realTimeData": {
auctionDelay: 100,
Expand All @@ -45,14 +48,18 @@ pbjs.setConfig({
}]
}
});

```

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`.

## Output

For each bidder, the module adds intersection in a JSON format.
Example:

```javascript

{
"intersection":{
'boundingClientRect': {
Expand Down
2 changes: 2 additions & 0 deletions dev-docs/modules/userid-submodules/unified.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ The Unified ID privacy is covered under the [TradeDesk Services Privacy Policy](
| 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>" |
| 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"}` |

Either `params.partner` or `params.url` must be provided.

## Unified ID Examples

1. Publisher has a partner ID with The Trade Desk, and is using the default endpoint for Unified ID.
Expand Down
2 changes: 2 additions & 0 deletions dev-docs/modules/userid-submodules/yandex.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ pbjs.setConfig({
},
});
```

**Storage Requirements**: Yandex ID requires the storage object to specify cookie `type`, name `_ym_uid`, and an expiration of at least 30 days.
5 changes: 4 additions & 1 deletion identity/sharedid.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ SharedId is a convenient Prebid-owned first party identifier within the [Prebid
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.

{: .table .table-bordered .table-striped }

| Implementation | Description | Cookie Lifetime | Safari Cookie Lifetime | Technical Difficulty | Revenue Benefit |
| --- | --- | --- | --- | --- | --- |
| 3rd Party Cookie Only | No first party cookie solution. | Some Blocked | Blocked | None | Low |
Expand Down Expand Up @@ -149,7 +150,7 @@ removed in Prebid.js 5.0.

### Configuration

You can find available configuration options for the SharedID module [here](https://docs.prebid.org/dev-docs/modules/userid-submodules/sharedid.html)
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)

### Privacy Discussion

Expand Down Expand Up @@ -211,13 +212,15 @@ If custom configurations are needed, define the pubcid_options object before inc
Below are the available configuration options for the PubCID script.

{: .table .table-bordered .table-striped }

| Parameter Name | Type | Description | | Example |
| --- | --- | --- | --- | --- |
| 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` |
| expInterval | decimal | Expiration interval in minutes. Default is 525600, or 1 year | | `525600` |
| 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` |
| pixelUrl | string (optional) | For publisher server support only. Where to call out to for a server cookie. | | `/wp-json/pubcid/v1/extend/` |
| 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` |
| inserter | string (optional) | Adds this value into the EID object `inserter` field. | | `myPartner` |

#### Example Configurations

Expand Down