From 650d0cb0d662b8dcf0d971dac3e249c307f363da Mon Sep 17 00:00:00 2001 From: rufiange Date: Wed, 29 Oct 2025 14:33:16 -0400 Subject: [PATCH 1/5] doc: update contxtful --- dev-docs/bidders/contxtful.md | 45 +++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index 930b1f1d75..e66c3e2ff7 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -32,13 +32,50 @@ The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtf | `placementId` | required | The placement identifier | `'p12345678'` | `string` | | `customerId` | required | The customer identifier | `'DEMO123456'` | `string` | -### Configuration +### Configuration - Prebid.js Adatper + +n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. + +see: ```javascript pbjs.setConfig({ "contxtful":{ "version":"v1", - "customer":"<>" + "customer":"" + }, + "realTimeData":{ + "dataProviders":[ + { + "name":"contxtful", + "waitForIt":true, + "params":{ + "version":"v1", + "customer":"", + "bidders":[ + "contxtful", + "" + ], + "adServerTargeting":true + } + } + ] + } +} +); +``` + +### Configuration - Prebid Server Adatper + +n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. + +see: + +```javascript +pbjs.setConfig({ + "s2sConfig":{ + "bidders": ["contxtful", ""], + "" }, "realTimeData":{ "dataProviders":[ @@ -47,9 +84,9 @@ pbjs.setConfig({ "waitForIt":true, "params":{ "version":"v1", - "customer":"<>", + "customer":"", "bidders":[ - "contxtful" + "" ], "adServerTargeting":true } From 1f0be5c732867b901f49f185ed58e7fd1c509665 Mon Sep 17 00:00:00 2001 From: rufiange Date: Wed, 29 Oct 2025 14:52:01 -0400 Subject: [PATCH 2/5] doc: revised --- dev-docs/bidders/contxtful.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index e66c3e2ff7..cffe174c4f 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -16,7 +16,7 @@ pbjs: true pbs: true pbs_app_supported: false prebid_member: true -multiformar_supported: will-bid-on-any +multiformat_supported: true ortb_blocking_supported: true --- @@ -32,11 +32,11 @@ The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtf | `placementId` | required | The placement identifier | `'p12345678'` | `string` | | `customerId` | required | The customer identifier | `'DEMO123456'` | `string` | -### Configuration - Prebid.js Adatper +### Configuration - Prebid.js Adapter n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. -see: +see: ```javascript pbjs.setConfig({ @@ -65,11 +65,11 @@ pbjs.setConfig({ ); ``` -### Configuration - Prebid Server Adatper +### Configuration - Prebid Server Adapter n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. -see: +see: ```javascript pbjs.setConfig({ @@ -113,18 +113,18 @@ AdUnit-specific data is supported using `AdUnit.ortb2Imp.ext.*` var adUnitList = [ { code: 'AD_UNIT_NAME_HERE', - mediaTypes: { /* "<< ENTER_FORMAT_HERE >> */ }, + mediaTypes: { /* " */ }, bids: [{ bidder: 'contxtful', params: { - placementId: "<>", - customerId: "<>" + placementId: "", + customerId: "" } }], ortb2Imp: { ext: { data: { - divId: "<>" + divId: "" } } } From d9e0429cbdb35d12604d5cdadee0c396fef32963 Mon Sep 17 00:00:00 2001 From: rufiange Date: Tue, 18 Nov 2025 09:52:21 -0500 Subject: [PATCH 3/5] fix: multiformat --- dev-docs/bidders/contxtful.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index cffe174c4f..eaaf8f9747 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -16,7 +16,7 @@ pbjs: true pbs: true pbs_app_supported: false prebid_member: true -multiformat_supported: true +multiformat_supported: will-bid-on-any ortb_blocking_supported: true --- From 25e32f689510dd17ed7eb63f8ace073761b01fa0 Mon Sep 17 00:00:00 2001 From: rufiange Date: Tue, 18 Nov 2025 09:54:13 -0500 Subject: [PATCH 4/5] fix: rtd html links --- dev-docs/bidders/contxtful.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index eaaf8f9747..853808dbe2 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -36,7 +36,7 @@ The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtf n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. -see: +see: ```javascript pbjs.setConfig({ @@ -69,7 +69,7 @@ pbjs.setConfig({ n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. -see: +see: ```javascript pbjs.setConfig({ From 5ef80dd9f7cd0d421497247b8e081159afdc1c05 Mon Sep 17 00:00:00 2001 From: sebastienrufiange <131205907+sebastienrufiange@users.noreply.github.com> Date: Tue, 18 Nov 2025 11:18:53 -0500 Subject: [PATCH 5/5] Apply suggestions from code review Relative links Co-authored-by: Muki Seiler --- dev-docs/bidders/contxtful.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index 853808dbe2..550cdb02f6 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -36,7 +36,7 @@ The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtf n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. -see: +see: [contxtfulRtdProvider](/dev-docs/modules/contxtfulRtdProvider) ```javascript pbjs.setConfig({ @@ -69,7 +69,7 @@ pbjs.setConfig({ n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. -see: +see: [contxtfulRtdProvider](/dev-docs/modules/contxtfulRtdProvider) ```javascript pbjs.setConfig({