From a24c5df9b0570d4fdd2c88ef1c4de18f8248ed79 Mon Sep 17 00:00:00 2001 From: GosselinV Date: Wed, 18 Sep 2024 08:21:52 -0400 Subject: [PATCH 1/5] doc: contxtful markdown, first draft --- dev-docs/bidders/contxtful.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 dev-docs/bidders/contxtful.md diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md new file mode 100644 index 0000000000..647de12f9a --- /dev/null +++ b/dev-docs/bidders/contxtful.md @@ -0,0 +1,31 @@ +layout: bidder +title: Contxtful +description: Prebid Contxtful Bidder Adapter +biddercode: contxtful +tcfeu_supported: false +dsa_supported: ------------ +gvl_id: +usp_supported: true +coppa_supported: true +gpp_sids: None +schain_supported: ------------- +dchain_supported: ------------- +userId: all +media_types: banner, video, audio +safeframes_ok: true +deals_supported: ------------ +floors_supported: true +fpd_supported: ------------ +pbjs: true +pbs: false +pbs_app_supported: false +prebid_member: true +multiformar_supported: will-bid-on-any +ortb_blocking_supported: true +--- + +### Note + +The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtful.com](mailto:contact@contxtful.com) + + From 5c7f0c0ce7aa2c6c370358822ca7774925175497 Mon Sep 17 00:00:00 2001 From: ctxtfl-gosselinv Date: Wed, 18 Sep 2024 10:13:39 -0400 Subject: [PATCH 2/5] doc: remove unset, add schain, fdp --- dev-docs/bidders/contxtful.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index 647de12f9a..7e6af4ea12 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -1,21 +1,17 @@ +--- layout: bidder title: Contxtful description: Prebid Contxtful Bidder Adapter biddercode: contxtful tcfeu_supported: false -dsa_supported: ------------ -gvl_id: usp_supported: true coppa_supported: true -gpp_sids: None -schain_supported: ------------- -dchain_supported: ------------- +schain_supported: true userId: all media_types: banner, video, audio safeframes_ok: true -deals_supported: ------------ floors_supported: true -fpd_supported: ------------ +fpd_supported: true pbjs: true pbs: false pbs_app_supported: false From aead2c8c285336ff9fa7590c3216057205c639e9 Mon Sep 17 00:00:00 2001 From: ctxtfl-gosselinv Date: Wed, 18 Sep 2024 14:34:33 -0400 Subject: [PATCH 3/5] doc: add user sync recommendation --- dev-docs/bidders/contxtful.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index 7e6af4ea12..a95fa28d9f 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -20,8 +20,30 @@ multiformar_supported: will-bid-on-any ortb_blocking_supported: true --- -### Note +# Note The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtful.com](mailto:contact@contxtful.com) +## User Sync +Contxtful recommends enabling [User Syincing](https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing) to optimize match rate and monetization. +```javascript +// Enable iframe usersync +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: '*', + filter: 'include' + } + } + } +}); + +// Allow local storage usage +pbjs.bidderSettings = { + contxtful: { + storageAllowed: true + } +} +``` From 4a69b65c005650d9ec8c9d6d7c41f0645c84b101 Mon Sep 17 00:00:00 2001 From: ctxtfl-gosselinv Date: Wed, 18 Sep 2024 14:35:48 -0400 Subject: [PATCH 4/5] doc: typo --- 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 a95fa28d9f..d858cafac1 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -25,7 +25,7 @@ ortb_blocking_supported: true The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtful.com](mailto:contact@contxtful.com) ## User Sync -Contxtful recommends enabling [User Syincing](https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing) to optimize match rate and monetization. +Contxtful recommends enabling [User Syncing](https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing) to optimize match rate and monetization. ```javascript // Enable iframe usersync From a19f20ba5d0299ef9fb674c6550a718fcd5b47fb Mon Sep 17 00:00:00 2001 From: ctxtfl-gosselinv Date: Wed, 18 Sep 2024 16:06:39 -0400 Subject: [PATCH 5/5] doc: wildcard no go --- 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 d858cafac1..c97f8abed6 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -33,7 +33,7 @@ pbjs.setConfig({ userSync: { filterSettings: { iframe: { - bidders: '*', + bidders: ['contxtful'], filter: 'include' } }