From 79b1b520f360f3eb0dc2274c78b537631dac0ba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Tue, 25 Sep 2018 16:23:11 +0200 Subject: [PATCH 01/12] Livewrapped bidder adapter --- dev-docs/bidders/livewrapped.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dev-docs/bidders/livewrapped.md diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md new file mode 100644 index 0000000000..3f8021daf6 --- /dev/null +++ b/dev-docs/bidders/livewrapped.md @@ -0,0 +1,28 @@ +--- +layout: bidder +title: Livewrapped +description: Prebid Livewrapped Bidder Adaptor +top_nav_section: dev_docs +nav_section: reference +biddercode: livewrapped +biddercode_longer_than_12: false +hide: true +prebid_1_0_supported : true +media_types: banner +gdpr_supported: true +--- + +### Note: + +The Livewrapped Bidder Adapter requires setup and approval from Livewrapped AB. +Please reach out to for more information. + +### bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------------|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|------------------| +| `adUnitId` | required | The ad unit ID from Livewrapped. You may identify an ad unitt using the `publisherId` and `adUnitName` instead of an ad unit ID. | `'6A32352E-BC17-4B94-B2A7-5BF1724417D7'` | `string` | +| `publisherId` | optional | The publisher ID from Livewrapped. Must be used with `adUnitName`. | `'C6E31E93-116B-4040-A185-E7BA621C3799'` | `string` | +| `adUnitName` | optional | The ad unit name from Livewrapped. Must be used with `publisherId`. | `'panorama_d_1'` | `string` | +| `userId` | optional | If a user id is available, pass the id into this parameter. | `'user id'` | `string` | From c18da9bf40c17d81520b903b4b6404a24394176c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Fri, 5 Oct 2018 09:09:43 +0200 Subject: [PATCH 02/12] Added analytics documentation --- download.md | 8 ++++++++ overview/analytics.md | 1 + 2 files changed, 9 insertions(+) diff --git a/download.md b/download.md index 313457aafb..e346f574da 100644 --- a/download.md +++ b/download.md @@ -342,6 +342,14 @@ Note: If you receive an error during download you most likely selected a configu +
+
+ +
+
+
diff --git a/overview/analytics.md b/overview/analytics.md index c60dfa6c7d..921b5209c0 100644 --- a/overview/analytics.md +++ b/overview/analytics.md @@ -27,6 +27,7 @@ There are several analytics adapter plugins available to track header bidding pe | Vuble | Contact vendor | [Website](https://vuble.tv/us/prebid/) | | | YuktaMedia Analytics | Contact vendor | [website](https://yuktamedia.com/publishers/prebid/) | 1.0.0 | | Kargo Analytics | Contact vendor | [website](https://kargo.com/) | | +| Livewrapped Analytics | Contact vendor | [website](https://livewrapped.com/) | | None of these analytics options are endorsed or supported by Prebid.org. From c4c03bf04ef5392421edd359c2668c1f109b02a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Wed, 10 Oct 2018 07:25:29 +0200 Subject: [PATCH 03/12] Spelling --- dev-docs/bidders/livewrapped.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 3f8021daf6..b7f3d202e2 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -22,7 +22,7 @@ Please reach out to for more information. {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |---------------------|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|------------------| -| `adUnitId` | required | The ad unit ID from Livewrapped. You may identify an ad unitt using the `publisherId` and `adUnitName` instead of an ad unit ID. | `'6A32352E-BC17-4B94-B2A7-5BF1724417D7'` | `string` | +| `adUnitId` | required | The ad unit ID from Livewrapped. You may identify an ad unit using the `publisherId` and `adUnitName` instead of an ad unit ID. | `'6A32352E-BC17-4B94-B2A7-5BF1724417D7'` | `string` | | `publisherId` | optional | The publisher ID from Livewrapped. Must be used with `adUnitName`. | `'C6E31E93-116B-4040-A185-E7BA621C3799'` | `string` | | `adUnitName` | optional | The ad unit name from Livewrapped. Must be used with `publisherId`. | `'panorama_d_1'` | `string` | | `userId` | optional | If a user id is available, pass the id into this parameter. | `'user id'` | `string` | From fd0c75f43510afab35fc598d7f9e2b6caa761ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Mon, 25 May 2020 12:26:17 +0200 Subject: [PATCH 04/12] Added support for tcf2 and schain --- dev-docs/bidders/livewrapped.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 690c8d80d6..88d18df1d1 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -7,6 +7,8 @@ hide: true media_types: banner gdpr_supported: true userIds: id5Id, pubCommonId +tcf2_supported: true +schain_supported: true --- ### Note: From 62f15d92ad5cff50b9c07cb59d9c4a75ebc08c08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Thu, 10 Sep 2020 11:40:21 +0200 Subject: [PATCH 05/12] video and native support --- dev-docs/bidders/livewrapped.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 88d18df1d1..f03b50ca1f 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -4,7 +4,7 @@ title: Livewrapped description: Prebid Livewrapped Bidder Adaptor biddercode: livewrapped hide: true -media_types: banner +media_types: banner, video, native gdpr_supported: true userIds: id5Id, pubCommonId tcf2_supported: true From 9f1e498e3a8ee88e103e6a23e1a1c14191d6590c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Thu, 21 Jan 2021 15:25:41 +0100 Subject: [PATCH 06/12] Livewrapped gvl id --- dev-docs/bidders/livewrapped.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index e15d83b404..ca81124a78 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -9,6 +9,7 @@ gdpr_supported: true userIds: id5Id, pubCommonId tcf2_supported: true schain_supported: true +gvl_id: 919 --- ### Note: From 0aa9e9bca16cc131d064f97622cedd756d9d47d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Thu, 18 Mar 2021 18:06:37 +0100 Subject: [PATCH 07/12] Change in user id support --- dev-docs/bidders/livewrapped.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 2cb19e8464..0eb7eebe66 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -6,7 +6,7 @@ biddercode: livewrapped pbjs: true media_types: banner, video, native gdpr_supported: true -userIds: id5Id, pubCommonId +userIds: all schain_supported: true gvl_id: 919 --- From cda29bfd77828e86e1ef83d60291a896d42694e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Mon, 12 Apr 2021 09:28:41 +0200 Subject: [PATCH 08/12] Us Privacy and Coppa support --- dev-docs/bidders/livewrapped.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 0eb7eebe66..67978a74b3 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -9,6 +9,9 @@ gdpr_supported: true userIds: all schain_supported: true gvl_id: 919 +usp_supported: true +coppa_supported: true +safeframes_ok: true --- ### Note: From 16654de952d836e1635687b81132474674c7ef5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Andersson?= Date: Wed, 17 Nov 2021 19:34:26 +0100 Subject: [PATCH 09/12] adf document update #2084 --- dev-docs/bidders/adf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/adf.md b/dev-docs/bidders/adf.md index 6854ef685e..681834c95c 100644 --- a/dev-docs/bidders/adf.md +++ b/dev-docs/bidders/adf.md @@ -26,7 +26,7 @@ fpd_supported: true | `inv` | required, if `mid` not set | Inventory source ID | `1234` | `integer` | | `mname` | required, if `mid` not set | Placement name | `"Leaderboard"` | `string` | | `adxDomain` | optional, Prebid.js only | The Adform domain | `"adx.adform.net"` | `string` | -| `priceType` | optional, Prebid.js only | Price type | `"gross"` | `string` | +| `priceType` | optional | Price type | `"gross"` | `string` | Note: Bid placement should be defined using the `mid` parameter or `inv` and `mname` parameters (dynamic master tag) but not both. From 5dc05c1e670c07115dc804a9b398d23c5839336a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Andersson?= Date: Fri, 3 Dec 2021 22:38:12 +0100 Subject: [PATCH 10/12] Support for 1st party data --- dev-docs/bidders/livewrapped.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 67978a74b3..2c5976efc3 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -12,6 +12,7 @@ gvl_id: 919 usp_supported: true coppa_supported: true safeframes_ok: true +fpd_supported: true --- ### Note: From 5eba541516eb0bbcafe1f1a17c86d6114accb6b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Andersson?= Date: Fri, 3 Dec 2021 22:40:29 +0100 Subject: [PATCH 11/12] Revert change --- dev-docs/bidders/livewrapped.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 2c5976efc3..67978a74b3 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -12,7 +12,6 @@ gvl_id: 919 usp_supported: true coppa_supported: true safeframes_ok: true -fpd_supported: true --- ### Note: From 7051c27a661843d22eb8539ac525d61661642017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Andersson?= Date: Sun, 5 Dec 2021 16:59:03 +0100 Subject: [PATCH 12/12] First party data support --- dev-docs/bidders/livewrapped.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/livewrapped.md b/dev-docs/bidders/livewrapped.md index 67978a74b3..2c5976efc3 100644 --- a/dev-docs/bidders/livewrapped.md +++ b/dev-docs/bidders/livewrapped.md @@ -12,6 +12,7 @@ gvl_id: 919 usp_supported: true coppa_supported: true safeframes_ok: true +fpd_supported: true --- ### Note: