-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
GDPR-compliance for Prebid Server cookiesyncs #2516
Comments
While we're address this, can we cover #2242 ? I think this is the same piece of code. We haven't been able to get to it. |
@dbemiller if the module is disabled, does that fall into the 'GDPR is not in effect' bucket or should we just not add the |
@bretg I will aim to include that issue you noted as part of my changes here. |
@jsnellbaker in that case, don't add the I updated the top post to reflect this. Thanks for the catch! |
@jsnellbaker safe to close this? |
Yes - this change was merged in as part of the 1.11.0 release. |
Prebid.js cookie syncs with Prebid Server violate GDPR. See prebid/prebid-server#501 for more details.
If the GDPR module is included, please include the following properties in the
POST /cookie_sync
request body to Prebid Server:If GDPR is in effect:
gdpr
should be 1gdpr_consent
must be the Unpadded base64-URLencoded vendor consent string. This should be the same as you use in
request.user.ext.consent
for/openrtb2/auction
payloads.If GDPR is not in effect:
gdpr
should be 0gdpr_consent
should be undefinedIf the GDPR status is uncertain:
gdpr
should be undefinedgdpr_consent
is optional, but you should send it if you have it.If the GDPR module is not included, then the status is uncertain.
gdpr
should be undefined, andgdpr_consent
is optional.Let me know if you have any questions or concerns.
Thanks!
The text was updated successfully, but these errors were encountered: