From 0f492be5568778e40ef538cba3b05a5f441101d4 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 13 Nov 2023 01:44:06 +0100 Subject: [PATCH] Impactify : Add informations on storage in documentations (#4926) * Add informations on storage in documentations * wording fix * remove banner as display included --------- Co-authored-by: Thomas De Stefano Co-authored-by: Chris Huie --- dev-docs/bidders/impactify.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/dev-docs/bidders/impactify.md b/dev-docs/bidders/impactify.md index 10deada005..2d93d26fc2 100644 --- a/dev-docs/bidders/impactify.md +++ b/dev-docs/bidders/impactify.md @@ -33,9 +33,17 @@ The Impactify adaptator requires setup and validation from the Impactify team. S Impactify recommends the UserSync configuration below. Without it, the Impactify adapter will not be able to perform user syncs, which lowers match rate and reduces monetization. +Note : Impactify adapter needs storage access to work properly (Do not forget to set storageAllowed to true). + For Prebid.js v1.15.0 and later: ```javascript +pbjs.bidderSettings = { + impactify: { + storageAllowed: true // Mandatory + } +}; + pbjs.setConfig({ userSync: { filterSettings: { @@ -51,6 +59,13 @@ pbjs.setConfig({ For Prebid.js v1.14.0 and before: ```javascript + +pbjs.bidderSettings = { + impactify: { + storageAllowed: true // Mandatory + } +}; + pbjs.setConfig({ userSync: { iframeEnabled: true,