-
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
Sync pixel change onevideo adaptor #4718
Sync pixel change onevideo adaptor #4718
Conversation
* remove deprecated legacy url from pbs adapter * fix eslint errors * add and update tests for openRtb2 endpoint
This reverts commit 8c2b196.
* deprecate domain/referer type functions * delete modules that are using deprecated methods from utils.js * remove reference to getTopWindowLocation * sync with prebid-3.0 branch * remove test suite for getTopWindowLocation * add back md files of all deleted adapters * add md files of deleted analytics adapters * add adapters that are 3.0 compliant * add back the rubicon skipped test
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.
What are {gdpr_qparam} & {gdpr_consent_qparam} ? Be aware those aren't macros that will be resolved by Prebid.js and I don't see your module resolving them either.
Your call to Specifically, I suspect you want
Bottom line: don't expect the Prebid.js core to resolve your {macros} -- you have to do it yourself with the parameters sent into If you're telling me that you want the {macros} to be sent unresolved to your endpoint, then I don't know why you're bothering to send GDPR macros at all. To save you some time, gdprConsent is an object with a couple of attributes you'll want to use:
|
@bretg you are right!! thanks for correcting me. made the changes at getUserSyncs. Review pls |
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.
Besides the comments here, you need to update your unit tests to check that the usersync URL is getting resolved properly.
modules/oneVideoBidAdapter.js
Outdated
@@ -6,7 +6,7 @@ export const spec = { | |||
ENDPOINT: 'https://ads.adaptv.advertising.com/rtb/openrtb?ext_id=', | |||
SYNC_ENDPOINT1: 'https://cm.g.doubleclick.net/pixel?google_nid=adaptv_dbm&google_cm&google_sc', | |||
SYNC_ENDPOINT2: 'https://pr-bh.ybp.yahoo.com/sync/adaptv_ortb/{combo_uid}', | |||
SYNC_ENDPOINT3: 'https://sync-tm.everesttech.net/upi/pid/m7y5t93k?redir=https%3A%2F%2Fsync.adap.tv%2Fsync%3Ftype%3Dgif%26key%3Dtubemogul%26uid%3D%24%7BUSER_ID%7D', | |||
SYNC_ENDPOINT3: 'https://sync-tm.everesttech.net/upi/pid/m7y5t93k?{gdpr_qparam}&{gdpr_consent_qparam}&redir=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55986%2Fsync%3Fuid%3D%24%7BUSER_ID%7D%26_origin%3D0%26gdpr%3D{gdpr}%26gdpr_consent%3D{gdpr_consent}', |
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.
You're no longer using SYNC_ENDPOINT3. Either remove it or start using it please.
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.
removed
modules/oneVideoBidAdapter.js
Outdated
@@ -115,7 +116,7 @@ export const spec = { | |||
}, | |||
{ | |||
type: 'image', | |||
url: spec.SYNC_ENDPOINT3 | |||
url: `https://sync-tm.everesttech.net/upi/pid/m7y5t93k?gdpr_qparam==${gdprApplies ? 1 : 0}&gdpr_consent_qparam=${consentString}&redir=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55986%2Fsync%3Fuid%3D%24%7BUSER_ID%7D%26_origin%3D0%26gdpr%3D{gdpr}%26gdpr_consent%3D{gdpr_consent}` |
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 think this is what you want:
- gdpr_qparam as two equal signs
- The macros at the end gdpr%3D{gdpr}%26gdpr_consent%3D{gdpr_consent} are not going to get resolved. If you're using gdpr_qparam instead of gdpr, then you can just drop the ones at the end.
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.
regarding the macros will check with the publisher once and will do the change this is the pixel which was given by 'everesttech' team.
Ok - I get the macros at the end now -- gdpr%3D{gdpr}%26gdpr_consent%3D{gdpr_consent} will be resolved by everesttech before going to advertising.com. Merging. |
Type of change
Description of change
updating the sync pixel the params will be filled by the redirect URL
Be sure to test the integration with your adserver using the Hello World sample page.
For any changes that affect user-facing APIs or example code documented on http://prebid.org, please provide:
Other information
@bretg review pls, tests which are failing are not related to my code.