Skip to content
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

Merged
merged 105 commits into from
Jan 15, 2020

Conversation

DeepthiNeeladri
Copy link
Contributor

@DeepthiNeeladri DeepthiNeeladri commented Jan 12, 2020

Type of change

  • [X ] Bugfix

Description of change

updating the sync pixel the params will be filled by the redirect URL

  • test parameters for validating bids
{
  bidder: '<bidder name>',
  params: {
    // ...
  }
}

Be sure to test the integration with your adserver using the Hello World sample page.

  • contact email of the adapter’s maintainer
  • official adapter submission

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.

Fawke and others added 15 commits December 11, 2019 18:45
* 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
Copy link
Collaborator

@bretg bretg left a 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.

@bretg bretg self-assigned this Jan 13, 2020
@DeepthiNeeladri
Copy link
Contributor Author

DeepthiNeeladri commented Jan 14, 2020

@bretg the redirect URL will be filling the params tested pls check the screenshot
image
@bretg it is a blocker issue at our end can you please review and can confirm when it will be released.

@bretg
Copy link
Collaborator

bretg commented Jan 14, 2020

Your call to getUserSyncs: function(syncOptions) is probably not going to work the way want it to.

Specifically, I suspect you want ...%26gdpr%3D{gdpr}%26gdpr_consent%3D{gdpr_consent} to be resolved with the actual {gdpr} and {gdpr_consent} values. That won't happen unless you make it happen in your getUserSyncs function. You should be looking for the additional parameters like this:

getUserSyncs: function (syncOptions, responses, gdprConsent, uspConsent) {
    // resolve your macros with the gdprConsent object !
}

Bottom line: don't expect the Prebid.js core to resolve your {macros} -- you have to do it yourself with the parameters sent into getUserSyncs

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:

  • You should resolve {gdpr} to gdprConsent.gdprApplies
  • You should resolve {gdpr_consent} to gdprConsent.consentString

@DeepthiNeeladri
Copy link
Contributor Author

DeepthiNeeladri commented Jan 15, 2020

@bretg you are right!! thanks for correcting me. made the changes at getUserSyncs. Review pls

Copy link
Collaborator

@bretg bretg left a 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.

@@ -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}',
Copy link
Collaborator

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed

@@ -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}`
Copy link
Collaborator

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:

  1. gdpr_qparam as two equal signs
  2. 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.

Copy link
Contributor Author

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.

@bretg
Copy link
Collaborator

bretg commented Jan 15, 2020

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.

@bretg bretg merged commit d40ca16 into prebid:master Jan 15, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants