From 049f24f71ce64e8207b40f4558f92bd19848ba1a Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 14 Feb 2022 15:16:11 +0200 Subject: [PATCH 01/10] create new adapter docs for taboola bidder --- dev-docs/bidders/taboola.md | 54 +++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 dev-docs/bidders/taboola.md diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md new file mode 100644 index 0000000000..eee37c1614 --- /dev/null +++ b/dev-docs/bidders/taboola.md @@ -0,0 +1,54 @@ +--- +layout: bidder +title: Taboola +description: Prebid Taboola Bidder Adapter +pbjs: true +biddercode: taboola +gdpr_supported: true +usp_supported: true +coppa_supported: true +schain_supported: true +media_types: banner +gvl_id: 42 +prebid_member: true +floors_supported: true +safeframes_ok: true +--- + +### Note: + +The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com + +### Bid Params + + +| Name | Scope | Description | Example | Type | +|----------------|----------|-----------------------------------------------------|--------------------------|--------------| +| `tagId` | required | Tag Id / Placement name | `below the article` | `String` | +| `publisherId` | required | Publisher id | `Publisher name` | `String` | +| `bcat` | optional | list of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | +| `badv` | optional | Blocked Advertiser Domains | `example.com` | `Array` | +| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | + + +### Example Ad Unit +```javascript + var adUnits = [{ + code: 'your-unit-container-id', + mediaTypes: { + banner: { + sizes: [[300, 250], [300,600]] + } + }, + bids: [{ + bidder: 'taboola', + params: { + tagId: 'placement name', + publisherId: 'your publisher Id', + bidfloor: 0.25, // optional default is null + bcat: ['IAB1-1'], // optional default is [] + badv: ['example.com'] // optional default is [] + } + }] +}]; +``` From dcdb1af6d911c0238fe085166a0ea3f4cb55959b Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 15 Feb 2022 14:12:44 +0200 Subject: [PATCH 02/10] small fixes --- dev-docs/bidders/taboola.md | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index eee37c1614..2fc7999250 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -16,19 +16,16 @@ safeframes_ok: true --- ### Note: - The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com ### Bid Params - - -| Name | Scope | Description | Example | Type | -|----------------|----------|-----------------------------------------------------|--------------------------|--------------| -| `tagId` | required | Tag Id / Placement name | `below the article` | `String` | -| `publisherId` | required | Publisher id | `Publisher name` | `String` | -| `bcat` | optional | list of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | -| `badv` | optional | Blocked Advertiser Domains | `example.com` | `Array` | -| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | +| Name | Scope | Description | Example | Type | +|----------------|----------|---------------------------------------------------------|----------------------------|--------------| +| `tagId` | required | Tag ID / Placement Name
(as provided by Taboola) | `'Below The Article'` | `String` | +| `publisherId` | required | Alphabetic Publisher ID
(as provided by Taboola) | `'acme-publishing'` | `String` | +| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | +| `badv` | optional | Blocked Advertiser Domains | `'example.com'` | `String Url` | +| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | ### Example Ad Unit @@ -43,11 +40,11 @@ The Taboola Bidding adapter requires setup before beginning. Please contact us o bids: [{ bidder: 'taboola', params: { - tagId: 'placement name', - publisherId: 'your publisher Id', - bidfloor: 0.25, // optional default is null - bcat: ['IAB1-1'], // optional default is [] - badv: ['example.com'] // optional default is [] + tagId: 'Placement Name', + publisherId: 'your-publisher-id', + bidfloor: 0.25, // Optional - default is null + bcat: ['IAB1-1'], // Optional - default is [] + badv: ['example.com'] // Optional - default is [] } }] }]; From 5e686a2d8bdea2b245d8f5ed8e28791c4bc222f7 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 15 Feb 2022 15:29:12 +0200 Subject: [PATCH 03/10] small fixes --- dev-docs/bidders/taboola.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 2fc7999250..69b6bdda69 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -16,8 +16,14 @@ safeframes_ok: true --- ### Note: +Module that connects to Taboola bidder to fetch bids. +- Supports ‘display’ format +- Uses OpenRTB standard + The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com +{: .table .table-bordered .table-striped } + ### Bid Params | Name | Scope | Description | Example | Type | |----------------|----------|---------------------------------------------------------|----------------------------|--------------| From 62d4096465fc5470a20c578b66898a9d178d82c4 Mon Sep 17 00:00:00 2001 From: pcimring-taboola <57901387+pcimring-taboola@users.noreply.github.com> Date: Tue, 15 Feb 2022 16:19:15 +0200 Subject: [PATCH 04/10] Reposition the CSS directive Reposition the styling directive. Split the 'Note' into 2 sections. Make minor textual tweaks. --- dev-docs/bidders/taboola.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 69b6bdda69..35b772a100 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -15,16 +15,18 @@ floors_supported: true safeframes_ok: true --- -### Note: -Module that connects to Taboola bidder to fetch bids. -- Supports ‘display’ format -- Uses OpenRTB standard +### Note +- Supports `display` format. +- Uses `OpenRTB` standard. -The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com +### Registration -{: .table .table-bordered .table-striped } +The Taboola Adapter requires setup before beginning. Please contact us at prebid@taboola.com. ### Bid Params + +{: .table .table-bordered .table-striped } + | Name | Scope | Description | Example | Type | |----------------|----------|---------------------------------------------------------|----------------------------|--------------| | `tagId` | required | Tag ID / Placement Name
(as provided by Taboola) | `'Below The Article'` | `String` | From 27354a216c9e485a5610fe189dc68d55a032109d Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 14 Feb 2022 15:16:11 +0200 Subject: [PATCH 05/10] create new adapter docs for taboola bidder --- dev-docs/bidders/taboola.md | 54 +++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 dev-docs/bidders/taboola.md diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md new file mode 100644 index 0000000000..eee37c1614 --- /dev/null +++ b/dev-docs/bidders/taboola.md @@ -0,0 +1,54 @@ +--- +layout: bidder +title: Taboola +description: Prebid Taboola Bidder Adapter +pbjs: true +biddercode: taboola +gdpr_supported: true +usp_supported: true +coppa_supported: true +schain_supported: true +media_types: banner +gvl_id: 42 +prebid_member: true +floors_supported: true +safeframes_ok: true +--- + +### Note: + +The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com + +### Bid Params + + +| Name | Scope | Description | Example | Type | +|----------------|----------|-----------------------------------------------------|--------------------------|--------------| +| `tagId` | required | Tag Id / Placement name | `below the article` | `String` | +| `publisherId` | required | Publisher id | `Publisher name` | `String` | +| `bcat` | optional | list of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | +| `badv` | optional | Blocked Advertiser Domains | `example.com` | `Array` | +| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | + + +### Example Ad Unit +```javascript + var adUnits = [{ + code: 'your-unit-container-id', + mediaTypes: { + banner: { + sizes: [[300, 250], [300,600]] + } + }, + bids: [{ + bidder: 'taboola', + params: { + tagId: 'placement name', + publisherId: 'your publisher Id', + bidfloor: 0.25, // optional default is null + bcat: ['IAB1-1'], // optional default is [] + badv: ['example.com'] // optional default is [] + } + }] +}]; +``` From f76217193645662913454a4190dd0d2cb8144cd9 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 15 Feb 2022 14:12:44 +0200 Subject: [PATCH 06/10] small fixes --- dev-docs/bidders/taboola.md | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index eee37c1614..2fc7999250 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -16,19 +16,16 @@ safeframes_ok: true --- ### Note: - The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com ### Bid Params - - -| Name | Scope | Description | Example | Type | -|----------------|----------|-----------------------------------------------------|--------------------------|--------------| -| `tagId` | required | Tag Id / Placement name | `below the article` | `String` | -| `publisherId` | required | Publisher id | `Publisher name` | `String` | -| `bcat` | optional | list of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | -| `badv` | optional | Blocked Advertiser Domains | `example.com` | `Array` | -| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | +| Name | Scope | Description | Example | Type | +|----------------|----------|---------------------------------------------------------|----------------------------|--------------| +| `tagId` | required | Tag ID / Placement Name
(as provided by Taboola) | `'Below The Article'` | `String` | +| `publisherId` | required | Alphabetic Publisher ID
(as provided by Taboola) | `'acme-publishing'` | `String` | +| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | +| `badv` | optional | Blocked Advertiser Domains | `'example.com'` | `String Url` | +| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | ### Example Ad Unit @@ -43,11 +40,11 @@ The Taboola Bidding adapter requires setup before beginning. Please contact us o bids: [{ bidder: 'taboola', params: { - tagId: 'placement name', - publisherId: 'your publisher Id', - bidfloor: 0.25, // optional default is null - bcat: ['IAB1-1'], // optional default is [] - badv: ['example.com'] // optional default is [] + tagId: 'Placement Name', + publisherId: 'your-publisher-id', + bidfloor: 0.25, // Optional - default is null + bcat: ['IAB1-1'], // Optional - default is [] + badv: ['example.com'] // Optional - default is [] } }] }]; From 7d6cf1497e8607bde74a077957cc7fe3e76c21ed Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 15 Feb 2022 15:29:12 +0200 Subject: [PATCH 07/10] small fixes --- dev-docs/bidders/taboola.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 2fc7999250..69b6bdda69 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -16,8 +16,14 @@ safeframes_ok: true --- ### Note: +Module that connects to Taboola bidder to fetch bids. +- Supports ‘display’ format +- Uses OpenRTB standard + The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com +{: .table .table-bordered .table-striped } + ### Bid Params | Name | Scope | Description | Example | Type | |----------------|----------|---------------------------------------------------------|----------------------------|--------------| From 63f3a26d77924f9f76bee85a748aaf4c91d3a1f4 Mon Sep 17 00:00:00 2001 From: pcimring-taboola <57901387+pcimring-taboola@users.noreply.github.com> Date: Tue, 15 Feb 2022 16:19:15 +0200 Subject: [PATCH 08/10] Reposition the CSS directive Reposition the styling directive. Split the 'Note' into 2 sections. Make minor textual tweaks. --- dev-docs/bidders/taboola.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 69b6bdda69..35b772a100 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -15,16 +15,18 @@ floors_supported: true safeframes_ok: true --- -### Note: -Module that connects to Taboola bidder to fetch bids. -- Supports ‘display’ format -- Uses OpenRTB standard +### Note +- Supports `display` format. +- Uses `OpenRTB` standard. -The Taboola Bidding adapter requires setup before beginning. Please contact us on prebid@taboola.com +### Registration -{: .table .table-bordered .table-striped } +The Taboola Adapter requires setup before beginning. Please contact us at prebid@taboola.com. ### Bid Params + +{: .table .table-bordered .table-striped } + | Name | Scope | Description | Example | Type | |----------------|----------|---------------------------------------------------------|----------------------------|--------------| | `tagId` | required | Tag ID / Placement Name
(as provided by Taboola) | `'Below The Article'` | `String` | From 731f1fc26c5dacaac9e65175948f7347db0adac5 Mon Sep 17 00:00:00 2001 From: mikiz <31058500+mikizi@users.noreply.github.com> Date: Wed, 25 May 2022 12:10:58 +0300 Subject: [PATCH 09/10] Update taboola.md disable the support of: schain_supported --- dev-docs/bidders/taboola.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 35b772a100..92269a7d69 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -7,7 +7,7 @@ biddercode: taboola gdpr_supported: true usp_supported: true coppa_supported: true -schain_supported: true +schain_supported: false media_types: banner gvl_id: 42 prebid_member: true From 7ae8537cc95ffd5bfde6936f6fa270d32e72e3f1 Mon Sep 17 00:00:00 2001 From: "jenny.l" Date: Mon, 20 Jun 2022 16:03:03 +0300 Subject: [PATCH 10/10] update taboola prebid documentation --- dev-docs/bidders/taboola.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 92269a7d69..97c3d6ebe3 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -29,11 +29,11 @@ The Taboola Adapter requires setup before beginning. Please contact us at prebid | Name | Scope | Description | Example | Type | |----------------|----------|---------------------------------------------------------|----------------------------|--------------| -| `tagId` | required | Tag ID / Placement Name
(as provided by Taboola) | `'Below The Article'` | `String` | -| `publisherId` | required | Alphabetic Publisher ID
(as provided by Taboola) | `'acme-publishing'` | `String` | +| `tagId` | required | Tag ID / Placement Name
| `'Below The Article'` | `String` | +| `publisherId` | required | Numeric Publisher ID
(as provided by Taboola) | `'1234567'` | `String` | | `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | | `badv` | optional | Blocked Advertiser Domains | `'example.com'` | `String Url` | -| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` | +| `bidfloor` | optional | CPM bid floor | `0.25` | `Float` | ### Example Ad Unit