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/bidders/fwssp.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,18 +36,18 @@ The following bid params are for use with the Prebid.js bid adapter:
36
36
|`profile`| required | Profile Name - The value should contain a profile name. and NOT a numeric profile ID. This can either include the network ID prefix or with the profile name alone | "96749:global-js" |`string`|
37
37
|`siteSectionId`| required | Custom Site Section tag or numeric Site Section ID | "ss_12345" |`string`|
38
38
|`videoAssetId`| required | Custom content Video Asset ID | "pause_ad_video" |`string`|
|`adRequestKeyValues`| optional | An object of ad request key-value pairs. | { \_fw_player_width: '1920', \_fw_player_height: '1080' } |`object`|
42
44
|`gdpr_consented_providers`| optional | List of Consented Providers. A comma-separated list of ids. | "216,229,80,359,479" |`string`|
43
45
|`tpos`| optional | Slot time position in seconds. Default: 0 | 10 |`number`|
44
46
|`slid`| optional | Slot custom ID. Any string with valid letters/digits/symbols. Default: "Preroll_1" | "CustomPreroll" |`string`|
45
47
|`slau`| optional | Specify custom ad unit names for this slot. Multiple ad unit names can be put into this parameter, separated by "\|". Ad unit group names are also supported but you can only specify one ad unit group; multiple ad unit groups or mixed ad unit group and ad unit names are not supported. Default: "preroll" | "pre1\|pre2" |`string`|
46
-
|`minD`| optional | The minimum duration of a slot, in seconds. | 30 |`number`|
47
-
|`maxD`| optional | The maximum duration of a slot, in seconds. | 30 |`number`|
48
48
|`listeners`| optional | An object of AdManager event listeners | { onSlotStarted: this.onSlotStarted, adEvent: this.onAdEvent, onSlotEnded: this.onSlotEnded } |`object`|
49
-
|`isMuted`| optional |Constrols if ad playback should start with volume muted. Default: true | false |`boolean`|
50
-
|`showMuteButton`| optional | Controls if a mute button should be shown during ad playback. Default: false | true |`boolean`|
49
+
|`isMuted`| optional |Controls if ad playback should start with volume muted. Default: true | false |`boolean`|
50
+
|`showMuteButton`| optional | Controls if a mute button should be shown during ad playback. Default: false | true |`boolean`|
51
51
|`playerParams`| optional | An object of AdManager player parameter values | { "renderer.video.startDetectTimeout": 5000 } |`object`|
52
52
|`sdkVersion`| optional | The AdManager sdk version to use for playback. This is only valid for "outstream" formats. Default: "7.10.0" | "7.11.0" |`string`|
53
53
|`format`| optional | The format to use for displaying the ad. Default: outstream | "inbanner" |`string`|
Copy file name to clipboardExpand all lines: dev-docs/bidders/lane4.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,3 +90,30 @@ var adUnits = [
90
90
}
91
91
];
92
92
```
93
+
94
+
#### First Party Data
95
+
96
+
In release 4.30 and later, publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). The following fields are supported:
97
+
98
+
* ortb2.user.id
99
+
* ortb2.user.buyeruid
100
+
* ortb2.user.keywords
101
+
* ortb2.user.ext.*
102
+
103
+
Example first party data that's available to all bidders and all adunits:
104
+
105
+
```javascript
106
+
pbjs.setConfig({
107
+
ortb2: {
108
+
user: {
109
+
id:123456789, // Unique pseudonymized ID for the user (e.g., NPI).
110
+
buyeruid:987654321, // DSP-assigned user ID for identity resolution.
111
+
keywords:"kw1,kw2", // Interest or specialty tags (e.g., oncology, cardiology)
112
+
ext: {
113
+
key1:"values", // Custom healthcare metadata (e.g., icd10), single or comma seperated.
114
+
key2:"values"// Additional campaign context (e.g., ndc), single or comma seperated.
Copy file name to clipboardExpand all lines: dev-docs/bidders/pubmatic.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Publishers can use Prebid.js to call PubMatic in any of the following ways:
47
47
***Call through our client-side adapter**: Prebid.js calls PubMatic directly from the browser using our client-side adapter.
48
48
***Call through our server-side adapter**: Prebid.js makes a call to Prebid Server and then Prebid Server uses our server-side adapter to call PubMatic.
49
49
50
-
We highly recommend adding the `gptPreAuction` module to populate GPID (Global Placement ID) values. See the [gptPreAuction module documentation](https://docs.prebid.org/dev-docs/modules/gptPreAuction.html) for implementation details.
50
+
We highly recommend adding the `gptPreAuction` module to populate GPID (Global Placement ID) values. See the [gptPreAuction module documentation](https://docs.prebid.org/dev-docs/modules/gpt-pre-auction.html) for implementation details.
Copy file name to clipboardExpand all lines: dev-docs/modules/userId.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ The table below has the options that are common across ID systems. See the secti
102
102
103
103
## Permissions
104
104
105
-
Publishers can control which user ids are shared with the bid adapters they choose to work with by using the bidders array. The bidders array is part of the User id module config, publisher may choose to send an id to some bidders but not all, the default behavior is that each user id go to all bid adapters the publisher is working with.
105
+
Publishers can control which user ids are shared with the bid adapters they choose to work with by using the bidders array. The bidders array is part of the User id module config, publisher may choose to send an id to some bidders but not all, the default behavior is that each user id goes to all bid adapters the publisher is working with.
106
106
107
107
Use the optional `bidders` parameter to define an array of bidder codes to which this user ID may be sent.
0 commit comments