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
The Adagio bidder adapter requires setup and approval from the Adagio team. Please reach out to [[email protected]](mailto:[email protected]) for more information.
33
46
34
-
### Configuration for Prebid.js
47
+
We strongly recommend using it alongside the [Adagio RTD Provider](/dev-docs/modules/adagioRtdProvider.md), which leverages viewability and attention predictions to enhance inventory quality and maximize performance.
35
48
36
-
#### User Sync
49
+
We also strongly suggest enabling the gptPreAuction module, which automatically populates the GPID (Global Placement ID) values. The GPID helps improve monetization by providing more accurate identification of each ad placement. For setup details, see the [gptPreAuction module documentation](/dev-docs/modules/gpt-pre-auction.md).
37
50
38
-
Adagio strongly recommends enabling user syncing through iFrames. This functionality improves DSP user match rates and increases the bid rate and bid price. Make sure to call `pbjs.setConfig()` only once. This configuration is optional in Prebid, but required by Adagio.
|`organizationId`| required | Id of the Organization. Handed out by Adagio. |`'1010'`|`string`|
58
+
|`site`| required / optional (in-app) | Name of the site. Handed out by Adagio.<br><spanstyle="display:inline-block; margin-top: 0.6em; line-height:1.5; font-size:14px; font-style:italic;">- max length: 50</span> |`'mysite-com'`|`string`|
59
+
|`placement`| required | Refers to the placement of an adunit in a page. See [recommended values](#recommended-placement-param-values).<br><spanstyle="display:inline-block; margin-top: 0.6em; line-height:1.5; font-size:14px; font-style:italic;">- max length: 50<br>- max distinctives values: 10</span> |`'banner_top'`|`string`|
60
+
|`pagetype`| highly recommended | Describes what kind of content will be present in the page.<br><spanstyle="display:inline-block; margin-top: 0.6em; line-height:1.5; font-size:14px; font-style:italic;">- max length: 30<br>- max distinctives values: 50</span><br><spanstyle="display:inline-block; line-height:1.5; font-size:14px;">Can be set at adUnit level or via FPD ([see below](#setting-params-adunit-level-vs-first-party-data))</span> |`'article'`|`string`|
61
+
|`category`| recommended | Category of the content displayed in the page.<br><spanstyle="display:inline-block; margin-top: 0.6em; line-height:1.5; font-size:14px; font-style:italic;">- max length: 30<br>- max distinctives values: 50</span><br><spanstyle="display:inline-block; line-height:1.5; font-size:14px;">Can be set at adUnit level or via FPD ([see below](#setting-params-adunit-level-vs-first-party-data))</span> |`'sport'`|`string`|
62
+
63
+
#### Setting params: AdUnit Level vs First Party Data
55
64
56
-
The Adagio bid adapter uses browser local storage. Since Prebid.js 7.x, the access to it must be explicitly set.
65
+
You can set `pagetype` and `category` parameters in two ways:
**Important**: Adagio needs to collect attention data about the ads displayed on a page and must listen to some specifics ad-server events. Please refer to the [Adagio user guide](https://adagioio.notion.site/Adagio-Account-Setup-Guide-fbcd940649224cdfa10393d2f008792e) for details.
72
-
73
-
{: .table .table-bordered .table-striped }
90
+
**2. Globally via First Party Data** (applies to all adUnits on the page):
|`organizationId`| required | Id of the Organization. Handed out by Adagio. |`'1010'`|`string`|
78
-
|`site`| required | Name of the site. Handed out by Adagio.<br><i>- max length: 50</i> |`'mysite-com'`|`string`|
79
-
|`placement`*| required | Refers to the placement of an adunit in a page.<br>Must not contain any information about the type of device.<br><i>- max length: 50</i><br><i>- max distinctives values: 10</i> |`'ban_atf'`|`string`|
80
-
|`adUnitElementId`| required| Refers to the adunit html attribute id in a page. |`'gpt-ban-atf'`|`string`|
81
-
|`pagetype`*| highly recommended | Describes what kind of content will be present in the page.<br><i>- max length: 30</i><br><i>- max distinctives values: 50</i> |`'article'`|`string`|
82
-
|`category`*| recommended | Category of the content displayed in the page.<br><i>- max length: 30</i><br><i>- max distinctives values: 50</i> |`'sport'`|`string`|
83
-
|`video`| optional | OpenRTB 2.5 video options object. All options will override ones defined in mediaTypes video.<br>Mandatory: <br>- api <small><i>(your video player must at least support the value 2)</i></small><br> Highly recommended: <br> - playbackmethod <br> Not supported: <br>`protocol`, `companionad`, `companiontype`, `ext` options|`{api: [2], playbackmethod: [6], skip: 1, startdelay: 0}`|`object`|
|`splitKeyword`| optional | Keyword that can later be used in a split rule targeting to trigger the rule (especially for Direct Seats AB testing) |`'splitrule-one'`|`string`|
86
-
|`dataLayer`| optional | A set of arbitrary key-value pairs. This can be used to configure mappings. The keys and values must be strings. |`{placement: 'my-placement', siteid: 'my-siteid'}`|`object`|
87
-
88
-
<i>*These parameters will have their accentuated characters converted to their non-accentuated version: `é` => `e`</i>
92
+
```js
93
+
pbjs.setConfig({
94
+
ortb2: {
95
+
site: {
96
+
ext: {
97
+
data: {
98
+
pagetype:'article',
99
+
category:'sport'
100
+
}
101
+
}
102
+
}
103
+
}
104
+
});
105
+
```
89
106
90
-
#### First Party Data
107
+
* First Party Data takes precedence over AdUnit-level parameters.
108
+
* If the FPD value is an array, the first value will be used.
109
+
110
+
<aid="prebid-server-adapter"></a>
111
+
### Prebid Server
112
+
113
+
If you are hosting a Prebid Server, you must configure the Adagio Prebid Server adapter by changing the [`static/bidder-info/adagio.yaml` file](https://github.com/prebid/prebid-server/blob/master/static/bidder-info/adagio.yaml) in order to:
114
+
115
+
1. enable the adapter by deleting the `disabled: true` entry _(or set it to `false`)_
116
+
2. replace the endpoints containing the `REGION` by one of the value below:
Adagio will use FPD data as fallback for the params below:
141
+
{% endraw %}
93
142
94
-
- pagetype
95
-
- category
143
+
### Additional informations
96
144
97
-
If the FPD value is an array, the 1st value of this array will be used.
145
+
#### User Sync
98
146
99
-
#### Video outstream
147
+
Enable user sync via iframe to improve DSP user match rates, leading to higher bid rates and bid prices. While this configuration is optional in Prebid, it is required by Adagio. Ensure that `pbjs.setConfig()` is called only once.
100
148
101
-
The AdagioBidAdapter includes a default video player powered by [Blue Billywig](https://www.bluebillywig.com). This default player is used when no renderer is configured for the adUnit.
Adagio Prebid Server adapter is currently **available for apps**. Website support is coming soon. Activation requires setup and approval before beginning. Please reach out to your account manager or <[email protected]> for more details.
165
+
Setting a meaningful value for the `placement` parameter is essential for our adapter to optimize ad delivery and performance, as it defines the specific location and context of your ad unit within the page. To streamline your implementation and ensure consistent naming conventions across your inventory, we provide these standardized values that eliminate guesswork and ensure your ad units are properly categorized for maximum yield.
107
166
108
-
Adagio supports different regions for the Prebid Server. Please deploy the prebid config in each of your datacenters with the appropriate regional subdomain.
|`organizationId`| required | Id of the Organization. Handed out by Adagio. |`'1010'`|`string`|
117
-
|`placement`*| required | Refers to the placement of an adunit in a page.<br>Must not contain any information about the type of device.<br><i>- max length: 50</i><br><i>- max distinctives values: 10</i> |`'ban_atf'`|`string`|
118
-
|`pagetype`*| highly recommended | Describes what kind of content will be present in the page.<br><i>- max length: 30</i><br><i>- max distinctives values: 50</i> |`'article'`|`string`|
119
-
|`category`*| recommended | Category of the content displayed in the page.<br><i>- max length: 30</i><br><i>- max distinctives values: 50</i> |`'sport'`|`string`|
179
+
The Adagio bidder adapter (Prebid.js only) includes a default video player powered by [Blue Billywig](https://www.bluebillywig.com). This default player is used when no renderer is configured for the adUnit.
120
180
121
-
<i>*These parameters will have their accentuated characters converted to their non-accentuated version: `é` => `e`</i>
0 commit comments