-
Notifications
You must be signed in to change notification settings - Fork 765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prebid Server and CCPA - phase 1 #1107
Comments
Should we even usersync if we get the privacy signal? |
doing any kind of enforcement (e.g. suppressing usersync) is what I'm thinking of as the second phase. stepping back, CCPA is about "selling data". Prebid Server itself is a kind of a smart proxy that can be run in a mode where the host company isn't selling data. So as an open source project, we need to consult with Prebid's lawyers and build in the right controls so different host companies can determine (with their own lawyers) how they want to configure the system to enforce various facets. |
`request.regs.ext.us-privacy` pass-through to each bidder. ``` { "regs": { "ext": { "us_privacy": "1YN" } } } ``` `/cookie_sync` accepts "us_privacy" field which used for {{us_privacy}} macro redirect-url: /setuid?bidder=adnxs&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&uid=$UID For more information prebid/prebid-server#1107
Discussed in the Prebid Server meeting today.
|
* CCPA Phase 1 `request.regs.ext.us-privacy` pass-through to each bidder. ``` { "regs": { "ext": { "us_privacy": "1YN" } } } ``` `/cookie_sync` accepts "us_privacy" field which used for {{us_privacy}} macro redirect-url: /setuid?bidder=adnxs&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&uid=$UID For more information prebid/prebid-server#1107 * improve doc * Add Amp ccpa processing * refactor model business logic.
Do we have an idea of which bidders support accepting the us privacy signal through their sync endpoint? I see you enabled a few in: prebid/prebid-server-java@f6c4bc9 For PBS-Go, we would prefer to avoid appending the value to the redirect url until we figure out if it's needed for enforcement. |
We're passing us_privacy through all of the sync endpoints indiscriminately. Our assumption is that extra unused params shouldnt break anything |
Closing out CCPA Phase 1. |
The proposal for Prebid.js support for CCPA has been posted at prebid/Prebid.js#4425
The interface to Prebid Server is straightforward: a single value is placed on regs.exp.us_privacy
We propose this two-phase support plan for Prebid Server:
Phase 1 Changes
Passing regs.exp.us_privacy through the system untouched likely requires no work other than testing.
AMP requests can pass a
us_privacy
parameter through the GET URI, which is added to the OpenRTB as regs.ext.us_privacyThe /cookie_sync endpoint will accept an additional
us_privacy
parameterPhase 2 Design
A separate issue will be opened to propose and discuss the more difficult enforcement feature.
The text was updated successfully, but these errors were encountered: