-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 consentManagement module docs #645
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
df216bd
initial commit for gdpr module docs
jsnellbaker b8c4090
Merge branch 'master' into gdpr_consent_module
jsnellbaker 8b9b01a
updated module syntax examples as well as compliant adapter table & l…
jsnellbaker 915f051
adding consentRequired field to module page
jsnellbaker d8ad664
updated adapter integration section
jsnellbaker 566ab6e
further revisions to Adapter Integration section
jsnellbaker b24dfb8
pending release comments added
jsnellbaker e5e928e
updated description and added comment in code snippet
jsnellbaker 48dc6c8
fixing description update
jsnellbaker 4d23357
updated module page based on feedback
jsnellbaker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
--- | ||
layout: page | ||
title: Module - GDPR ConsentManagement | ||
description: Add on module to consume and distribute consent information to bidder adapters | ||
top_nav_section: dev_docs | ||
nav_section: modules | ||
module_code : consentManagement | ||
display_name : GDPR ConsentManagement | ||
--- | ||
|
||
<div class="bs-docs-section" markdown="1"> | ||
|
||
## PENDING RELEASE | ||
This module is still considered under development, but the core logic and integration steps documented here will very likely remain as described. | ||
|
||
# GDPR ConsentManagement Module | ||
{:.no_toc} | ||
|
||
Designed to support the EU General Data Protection Regulation ([GDPR](https://www.eugdpr.org/)), this module works with supported Consent Management Platforms (CMPs) to fetch an encoded string representing the user's consent choices and make it available for adapters to consume and process. | ||
|
||
This module will perform its tasks with the CMP prior to the auction starting. A rough synopsis of this interaction process would be: | ||
|
||
1. Fetch the user's encoded consent string from the CMP. | ||
2. With a valid consent string, we will incorporate this data into the auction objects (for adapters to collect) and then allow the auction to proceed. | ||
|
||
There are timeout settings in place in the module to permit this interaction with the CMP a specified length of time to operate before it's unacceptable or assumed an issue has occurred. | ||
|
||
When either this timeout occurs or if an error from the CMP is thrown, one of two options are taken; either: | ||
|
||
1. The auction is canceled outright. | ||
2. The auction proceeds without the user's consent information. | ||
|
||
Though these options are mutually exclusive, they are configurable by the publisher via the site's implementation of the prebid code (see further below for details) so that they can be used in the proper scenarios for that site/audience. | ||
|
||
|
||
## Page integration | ||
|
||
To utilize this module, a separate CMP needs to be implemented onto the site to interact with the user and obtain their consent choices. | ||
|
||
The actual implementation details of this CMP are not covered by this page; any questions on that implemenation should be referred to the CMP in question. However, we would recommend to have the CMP's code located before the prebid code in the head of the page, in order to ensure their framework is implemented before the prebid code starts to execute. | ||
|
||
The module currently supports any CMP that conforms to the IAB standard ([more info here](https://github.com/InteractiveAdvertisingBureau/GDPR-Transparency-and-Consent-Framework)). | ||
|
||
Once the CMP is implemented, simply include the module in your build and add a `consentManagement` object in the `setConfig()` call. Adapters that support this feature will be able to retrieve the consent information and incorporate it in their requests. | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Param | Type | Description | Example | | ||
| --- | --- | --- | --- | | ||
| cmpApi | `string` | The ID for the CMP in use on the page. Default is `'iab'` | `'iab'` | | ||
| consentRequired | `boolean` | An override type setting to indicate if GDPR consent is required or not. See note in regards to default. | `true` or `false` | | ||
| timeout | `integer` | Length of time (in milliseconds) to allow the CMP to perform its tasks before aborting the process. Default is `500` | `500` | | ||
| allowAuctionWithoutConsent | `boolean` | A setting to determine what will happen when obtaining consent information from the CMP fails; either allow the auction to proceed (**true**) or cancel the auction (**false**). Default is `true` | `true` or `false` | | ||
|
||
* Note - Some SSPs can determine whether a given request is in GDPR scope or not. If the page specifies `consentRequired`, it will override any dynamic determination and force the bidders to use this override value -- i.e. tell the SSP whether the consent string must be enforced for this user. Each bidder adapter supporting GDPR will default to the proper setting for the backend SSP, so it's not recommended to set this value unless override is what's desired. | ||
|
||
Example: AppNexus CMP using the custom timeout and cancel auction options with the consentRequired field not defined. | ||
|
||
{% highlight js %} | ||
var pbjs = pbjs || {}; | ||
pbjs.que = pbjs.que || []; | ||
pbjs.que.push(function() { | ||
pbjs.setConfig({ | ||
consentManagement: { | ||
cmp: 'appnexus', | ||
timeout: 1000, | ||
allowAuctionWithoutConsent: false | ||
} | ||
}); | ||
pbjs.addAdUnits(adUnits); | ||
}); | ||
{% endhighlight %} | ||
|
||
## Build the package | ||
|
||
#### Step 1: Bundle the module code | ||
|
||
Follow the basic build instructions on the Github repo's main README. To include the module, an additional option must be added to the the gulp build command: | ||
|
||
{% highlight bash %} | ||
gulp build --modules=consentManagement,bidAdapter1,bidAdapter2 | ||
{% endhighlight %} | ||
|
||
#### Step 2: Publish the package(s) to the CDN | ||
|
||
After testing, get your javascript file(s) out to your Content Delivery Network (CDN) as normal. | ||
|
||
Note that there are more dynamic ways of combining these components for publishers or integrators ready to build a more advanced infrastructure. | ||
|
||
## Adapter integration | ||
|
||
To find the GDPR consent information to pass along to your system, adapters should look for the `bidderRequest.gdprConsent` field in their buildRequests() method. | ||
Below is a sample of how the data is structured in the `bidderRequest` object: | ||
|
||
{% highlight js %} | ||
{ | ||
"bidderCode": "appnexus", | ||
"auctionId": "e3a336ad-2761-4a1c-b421-ecc7c5294a34", | ||
"bidderRequestId": "14c4ede8c693f", | ||
"bids": [ | ||
{ | ||
"bidder": "appnexus", | ||
"params": { | ||
"placementId": "10433394" | ||
}, | ||
"adUnitCode": "ad-unit-code", | ||
"transactionId": "0e8c6732-0999-4ca8-b44f-8fe514f53cc3", | ||
"sizes": [[300, 250], [300, 600]], | ||
"bidId": "2e6fe30b22b4fc", | ||
"bidderRequestId": "14c4ede8c693f", | ||
"auctionId": "e3a336ad-2761-4a1c-b421-ecc7c5294a34" | ||
} | ||
], | ||
"auctionStart": 1520001292880, | ||
"timeout": 3000, | ||
"gdprConsent": { | ||
"consentString": "BOJ/P2HOJ/P2HABABMAAAAAZ+A==", | ||
"consentRequired": true | ||
}, | ||
"start": 1520001292884, | ||
"doneCbCallCount": 0 | ||
} | ||
{% endhighlight %} | ||
|
||
### Notes about data fields | ||
|
||
#### *consentString* | ||
This field contains the user's choices on consent, represented as an encoded string value. In certain scenarios, this field may come to you with an `undefined` value; normally this happens when there was an error during the CMP interaction and the publisher had the config option `allowAuctionWithoutConsent` set to `true`. If you wish to set your own value for this scenario rather than pass along `undefined` to your system, you can check for the `undefined` value in the field and replace it accordingly. The code sample provided in the *consentRequried* section below provides a possible approach to perform this type of check/replacement. | ||
|
||
#### *consentRequired* | ||
As described earlier in this page - if the publisher didn't set their own value for `consentRequired` in the prebid `setConfig` code, each adapter has the opportunity to set their own value for this field. | ||
There are two general approaches that can be taken by the adapter to populate this field: | ||
|
||
- Set a hardcoded default value. | ||
- Using their own system, derive if consent is required for the end-user and set the value accordingly. | ||
|
||
Using the former option, below is an example of how the integration could look: | ||
|
||
{% highlight js %} | ||
... | ||
buildRequests: function (bidRequests, bidderRequest) { | ||
... | ||
if (bidderRequest && bidderRequest.gdprConsent) { | ||
adapterRequest.gdpr_consent = { | ||
consent_string: bidderRequest.gdprConsent.consentString, | ||
// will check if the consentRequired field was populated with a boolean value (ie from page config). If it's undefined, then default to true | ||
consent_required: (typeof bidderRequest.gdprConsent.consentRequired === 'boolean') ? bidderRequest.gdprConsent.consentRequired : true | ||
} | ||
} | ||
... | ||
} | ||
... | ||
{% endhighlight %} | ||
|
||
The implementation of the latter option is up to the adapter, but the general premise should be the same. You would check to see if the `bidderRequest.gdprConsent.consentRequired` field is undefined and if so, set the derived value from your independent system. Otherwise, you would use the publisher's value that was set in the `bidderRequest.gdprConsent.consentRequired` field. | ||
|
||
If neither option are taken, then there is a chance this field's value will be undefined on certain requests. As long as that acceptable, this could be a potential third option. | ||
|
||
{% assign bidder_pages = site.pages | where: "layout", "bidder" %} | ||
|
||
<script> | ||
$(function(){ | ||
$('.adapters .col-md-4').hide(); | ||
$('.gdpr_supported').show(); | ||
}); | ||
</script> | ||
|
||
Below is a list of Adapters that support GDPR: | ||
<div class="adapters"> | ||
{% for page in bidder_pages %} | ||
<div class="col-md-4{% if page.gdpr_supported %} gdpr_supported{% endif %}"> | ||
{{ page.title }} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mjacobsonny
What do you want to call the module? GDPR Consent Management or just "Consent Management"