Skip to content

Commit 095ebf1

Browse files
Adagio Adapter: Add site bidder param and web inventory (#4101)
1 parent 4849c10 commit 095ebf1

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

src/main/java/org/prebid/server/proto/openrtb/ext/request/adagio/ExtImpAdagio.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ public class ExtImpAdagio {
1111

1212
String placement;
1313

14+
String site;
15+
1416
String pagetype;
1517

1618
String category;

src/main/resources/bidder-config/adagio.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ adapters:
22
adagio:
33
# Please deploy this config in each of your datacenters with the appropriate regional subdomain.
44
# Replace the `REGION` by one of the value below:
5-
# - For AMER: las => (https://mp-las.4dex.io/pbserver)
6-
# - For EMEA: ams => (https://mp-ams.4dex.io/pbserver)
7-
# - For APAC: tyo => (https://mp-tyo.4dex.io/pbserver)
5+
# - For AMER: las => (https://mp-las.4dex.io/pbserver and https://u-las.4dex.io/pbserver/usync.html)
6+
# - For EMEA: ams => (https://mp-ams.4dex.io/pbserver and https://u-amx.4dex.io/pbserver/usync.html)
7+
# - For APAC: tyo => (https://mp-tyo.4dex.io/pbserver and https://u-tyo.4dex.io/pbserver/usync.html)
88
endpoint: https://mp-REGION.4dex.io/pbserver
99
ortb-version: "2.6"
1010
endpoint-compression: gzip
@@ -20,3 +20,9 @@ adapters:
2020
- native
2121
supported-vendors:
2222
vendor-id: 617
23+
usersync:
24+
cookie-family-name: adagio
25+
iframe:
26+
url: https://u-REGION.4dex.io/pbserver/usync.html?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&&gpp_sid={{gpp_sid}}&r={{redirect_url}}
27+
support-cors: false
28+
uid-macro: '{UID}'

src/main/resources/static/bidder-params/adagio.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
"description": "Refers to the placement of an adunit in a page. Must not contain any information about the type of device.",
1414
"maxLength": 30
1515
},
16+
"site": {
17+
"type": "string",
18+
"description": "Name of the site. Handed out by Adagio.",
19+
"maxLength": 50
20+
},
1621
"pagetype": {
1722
"type": "string",
1823
"description": "Describes what kind of content will be present in the page.",

0 commit comments

Comments
 (0)