You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several bidders have ways for prebid users to pass the COPPA flag, but Prebid.js hasn't specified a standard way to specify it such that all bid adapters can access it.
Proposal
This doesn't fit into the First Party Data context framework because the COPPA flag is always public and should be known to all adapters, while other first party data might be limited to a certain set of bidders.
So the proposal is
Declare a configuration convention for the publisher to signal PBJS about COPPA content:
pbjs.setConfig({coppa: true});
Each adapter supporting COPPA would then be updated to call getConfig({coppa})
The Prebid Server Bid Adapter will be updated to pass this value to PBS as regs.coppa=1 when true.
Prebid Server will pass regs.coppa to adapters and will always (not configurable) cause the PBS core to enforce COPPA rounding of IP address and removal of ID as suggested in the OpenRTB standard:
Based on feedback from code inspection, we've changed the design back to having the bid adapters each call getConfig instead of having core put it on the bidrequest object.
Type of Issue
Feature
Description
Several bidders have ways for prebid users to pass the COPPA flag, but Prebid.js hasn't specified a standard way to specify it such that all bid adapters can access it.
Proposal
This doesn't fit into the First Party Data
context
framework because the COPPA flag is always public and should be known to all adapters, while other first party data might be limited to a certain set of bidders.So the proposal is
Each adapter supporting COPPA would then be updated to call
getConfig({coppa})
The Prebid Server Bid Adapter will be updated to pass this value to PBS as regs.coppa=1 when true.
Prebid Server will pass regs.coppa to adapters and will always (not configurable) cause the PBS core to enforce COPPA rounding of IP address and removal of ID as suggested in the OpenRTB standard:
Update prebid.org with a page that dynamically lists the COPPA-supporting adapters based on the .md file similar to what we do for GDPR.
Define how COPPA flag gets sent in the SDK
The text was updated successfully, but these errors were encountered: