-
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
Criteo Bid Adapter: update adapter to use mediaTypes.video instead of custom parameters #6778
Conversation
modules/criteoBidAdapter.js
Outdated
@@ -311,15 +311,14 @@ function buildCdbRequest(context, bidRequests, bidderRequest) { | |||
mimes: bidRequest.mediaTypes.video.mimes, | |||
protocols: bidRequest.mediaTypes.video.protocols, | |||
maxduration: bidRequest.mediaTypes.video.maxduration, | |||
api: bidRequest.mediaTypes.video.api | |||
api: bidRequest.mediaTypes.video.api, | |||
skip: bidRequest.mediaTypes.video.skippable || bidRequest.params.video.skip, |
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.
openrtb = skip
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.
Thanks @patmmccann , fixed
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.
OpenRTB parameter is skip, feel free to support skippable as well
adaa188
to
94748f7
Compare
94748f7
to
02e2024
Compare
@leonardlabat could you also address #6650 please |
hey @leonardlabat wanted to follow up here - will you be able to add the adomain stub in the next week? |
it got merged already #6915 |
Yep exactly |
perfect thank you both |
Type of change
Description of change
Updated adapter to use mediaTypes.video instead of custom parameters.
Reading from custom parameters is kep for now to ensure backward compatibility. Documentation will be updated once PBJS 5.0 will be released.