I'm trying to setup Prebid to send a GDPR consent value to SSPs. I've implemented CMP but in console I can see that Prebid just ignores it
WARNING: CMP not found. Resuming auction without consent data as per consentManagement config. undefined
I've no idea why Prebid doesn't recognize CMP, it is IAB compliant so everything should be ok. Any ideas where I made mistake?
Edit: The problem is I implemented setup from prebid.org to my site
pbjs.que.push(function() {
pbjs.setConfig({
consentManagement: {
cmpApi: 'iab',
timeout: 5000,
allowAuctionWithoutConsent: true
}
});
Also made a change to prebid.js file which now contains consentManagement adapter.
script type="text/javascript" src="http://testowa.epizy.com/prebid2.9.0.js" async>
I built a digi-trust cmp from https://github.com/adform/cmp and also implemented it on my site.
Everything looks ok, CMP works fine, I get an consent and I can see it in my console. However Prebid dosen't see that there is an CMP and it throws out a warning with an information I've mentioned before.
So even though I get consent and see cookie the request for an ad goes without it because prebid doesn't recognize it.
I need that consent to go with an ad request to SSPs.
Hope I made it a bit easier to understand what my problem is. I could provide a test page if needed.
For whatever reason it doesn't recognise the cookie, a possible fix is just to send the cookie as static:
This way you would send the whole cookie so it should work, but note that you need all attributes I mention above (prebid issues not related to this). Make sure you validate the cookie though, just to be sure.