-
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
userId Module: update GAM APIs for Eids #10172
Conversation
const encryptedSignalSources = config.getConfig('userSync.encryptedSignalSources'); | ||
if (encryptedSignalSources) { | ||
const registerDelay = encryptedSignalSources.registerDelay || 0; | ||
setTimeout(() => { | ||
encryptedSignalSources['sources'] && encryptedSignalSources['sources'].forEach(({ source, encrypt, customFunc }) => { | ||
source.forEach((src) => { | ||
window.googletag.encryptedSignalProviders.push({ | ||
window.googletag.secureSignalProviders.push({ | ||
id: src, |
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.
I don't know how to test this - but id
does not appear in the docs you linked.
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.
Sorry that I linked to the wrong section in the doc. Please check this link instead:
https://developers.google.com/publisher-tag/reference#googletag.securesignals.biddersignalprovider
Type of change
Bugfix
Feature
New bidder adapter
Code style update (formatting, local variables)
Refactoring (no functional changes, no api changes)
Build related changes
CI related changes
Does this change affect user-facing APIs or examples documented on http://prebid.org?
Other
Description of change
Google renamed its product name from encrypted signals to secure signals, and thus API function names were changed too. Though the legacy functions are still around, it outputs deprecation messages to console. So let's migrate to new function names.
Other information