From 1bda27e38e24422b3d365b56ae2f707e94c98a3e Mon Sep 17 00:00:00 2001 From: Ryan Chou Date: Thu, 14 Jun 2018 17:58:17 +0800 Subject: [PATCH 1/5] Add instream video and native support for ucfunnel adapter --- dev-docs/bidders/ucfunnel.md | 46 +++++++++++++++++++++++++++--------- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/dev-docs/bidders/ucfunnel.md b/dev-docs/bidders/ucfunnel.md index e99158ace0..d268f5617d 100644 --- a/dev-docs/bidders/ucfunnel.md +++ b/dev-docs/bidders/ucfunnel.md @@ -8,21 +8,45 @@ hide: true biddercode: ucfunnel biddercode_longer_than_12: false prebid_1_0_supported : true +media_types: video, native gdpr_supported: true --- -### bid params Prebid 0.34 +**Table of Contents** -{: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | -|:-----------|:---------|:------------|:-----------------| -| `adid` | required | | | -| `` | optional | | | +- [Bid params](#ucfunnel-bid-params) +- [Examples](#ucfunnel-examples) + + -### bid params Prebid 1.x +### Bid params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | -|:-----------|:---------|:------------|:-----------------| -| `adid` | required | | | -| `` | optional | | | +| Name | Scope | Description | Example | +|:------------|:---------|:-------------------------------------------------|:-----------------| +| `adid` | required | The ad unit ID retrived from ucfunnel dashboard | | +| `` | optional | | | + +{% highlight js %} +var adUnits = [{ + code: 'div-gpt-ad-1460505748511-01', + sizes: [ + [300, 250] + ], + bids: [{ + bidder: 'ucfunnel', + params: { + adid: '123456789' + } + }] +}] +{% endhighlight %} + +{: .alert.alert-info :} +Sizes set in the `adUnit` object will also apply to the ucfunnel bid requests. + + +### Examples + - Banner Ads(https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_banner.html) + - Video Ads (Instream)(https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_video.html) + - Native Ads(https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_native.html) \ No newline at end of file From 174249efe4fa123784e51b1d3b10896b244fe112 Mon Sep 17 00:00:00 2001 From: cliff_liu Date: Tue, 25 Feb 2020 11:22:50 +0800 Subject: [PATCH 2/5] [Dev Fix]add download.md && overview/analytics.md --- download.md | 8 ++++++++ overview/analytics.md | 1 + 2 files changed, 9 insertions(+) diff --git a/download.md b/download.md index 5b8de0f0f8..408116def9 100644 --- a/download.md +++ b/download.md @@ -409,6 +409,14 @@ Note: If you receive an error during download you most likely selected a configu +
+
+ +
+
+
Contact vendor | [Website](https://www.sovrn.com/analytics/)| | STAQ | Contact vendor | [Website](https://www.staq.com/)| +| ucfunnel | Contact vendor | [Website](https://www.ucfunnel.com/)| | Vuble | Contact vendor | [Website](https://vuble.tv/us/prebid/) | | Yieldone | Contact vendor | [Website](https://www.platform-one.co.jp/) | | YuktaMedia Analytics | Contact vendor | [Website](https://yuktamedia.com/publishers/prebid/) | From 7bca5e484d92d237b7b1e44d0e8815d7d9dfda56 Mon Sep 17 00:00:00 2001 From: "jack.hsieh" Date: Fri, 8 Jan 2021 11:10:53 +0800 Subject: [PATCH 3/5] ucfunnel adapter support schain, coppa, tcf2 --- dev-docs/bidders/ucfunnel.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/ucfunnel.md b/dev-docs/bidders/ucfunnel.md index f9039e4ceb..0b9144bffa 100644 --- a/dev-docs/bidders/ucfunnel.md +++ b/dev-docs/bidders/ucfunnel.md @@ -5,10 +5,13 @@ description: Prebid ucfunnel Bidder Adaptor pbjs: true pbs: true biddercode: ucfunnel -media_types: video, native +media_types: banner, video, native gdpr_supported: true usp_supported: true userIds: unifiedId +tcf2_supported: true +coppa_supported: true +schain_supported: true --- ### Bid params From 3179d160651eec309174ac2bcf81313f8ca6ad90 Mon Sep 17 00:00:00 2001 From: "jack.hsieh" Date: Thu, 14 Jan 2021 13:07:06 +0800 Subject: [PATCH 4/5] ucfunnel adapter docs add pbs_app_supported and gvl_id --- dev-docs/bidders/ucfunnel.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-docs/bidders/ucfunnel.md b/dev-docs/bidders/ucfunnel.md index 0b9144bffa..186f188454 100644 --- a/dev-docs/bidders/ucfunnel.md +++ b/dev-docs/bidders/ucfunnel.md @@ -12,6 +12,8 @@ userIds: unifiedId tcf2_supported: true coppa_supported: true schain_supported: true +gvl_id: 607 +pbs_app_supported: true --- ### Bid params From b17627567fa3f3c47a80282d532f8aa9b55504bd Mon Sep 17 00:00:00 2001 From: "jack.hsieh" Date: Sat, 11 Sep 2021 17:52:02 +0800 Subject: [PATCH 5/5] ucfunnel adapter docs add prebid-server params --- dev-docs/bidders/ucfunnel.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/ucfunnel.md b/dev-docs/bidders/ucfunnel.md index 5d102e23c1..ebdfcd4052 100644 --- a/dev-docs/bidders/ucfunnel.md +++ b/dev-docs/bidders/ucfunnel.md @@ -15,7 +15,9 @@ gvl_id: 607 pbs_app_supported: true --- -### Bid params +### Prebid JS + +#### Bid params {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | @@ -46,3 +48,16 @@ Sizes set in the `adUnit` object will also apply to the ucfunnel bid requests. - [Banner Ads](https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_banner.html) - [Instream Video Ads](https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_video.html) - [Native Ads](https://cdn.aralego.net/ucfad/test/ucfunnel/compliance/pbjs_native.html) + + +### Prebid server + +#### Bid params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|--------|----------|-------------------------------------------------|---------|----------| +| `adunitid` | required | ID for ad unit | | `string` | +| `partnerid` | required | ID for partner | | `string` | + +``` \ No newline at end of file