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
This is causing Prebid Server to reject consent strings as invalid. So this is pretty urgent. Heads up @bsardo and @SyntaxNode .
Here are the proposed updates:
allow tcfPolicyVersion==5
Update the algorithm for setting gvlSpecificationVersion:
If tcfPolicyVersion<4, set gvlSpecificationVersion=2
If tcfPolicyVersion is in (4,5), set gvlSpecificationVersion=3
otherwise, the incoming TCF string is invalid. Blank it out (no consent), emit an error in debug output, and log an error to the error log at N% sampling. The error should contain the value of the received tcfPolicyVersion.
The text was updated successfully, but these errors were encountered:
allow any tcfPolicyVersion, but emit alert.general metric if tcfPolicyVersion>5. At 1%, log a warning "unknown tcfPolicyVersion, defaulting to gvlSpecificationVersion=3"
Update the algorithm for setting gvlSpecificationVersion:
If tcfPolicyVersion<4, set gvlSpecificationVersion=2
If tcfPolicyVersion >=4, set gvlSpecificationVersion=3
Related to #2697, apparently the IAB now has a TCF Policy v5
Versions 62 and 63 of the GVL have this new version -- https://vendor-list.consensu.org/v3/vendor-list.json
This is causing Prebid Server to reject consent strings as invalid. So this is pretty urgent. Heads up @bsardo and @SyntaxNode .
Here are the proposed updates:
The text was updated successfully, but these errors were encountered: