-
Notifications
You must be signed in to change notification settings - Fork 0
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
Dailymotion Bid Adaptor: get iabcats from ortb2.site.content.data #17
Conversation
25e88f2
to
b399158
Compare
modules/dailymotionBidAdapter.js
Outdated
// See https://docs.prebid.org/features/firstPartyData.html#segments-and-taxonomy | ||
.filter(data => data?.ext?.segtax === 4) | ||
.map(data => (Array.isArray(data?.segment) ? data.segment : []).map(seg => seg.id)) | ||
.flat(1), |
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.
Is it possible to have the same segment id between the data ?
If it's the case, the final array could contains several times the same value/id.
modules/dailymotionBidAdapter.js
Outdated
// See https://docs.prebid.org/features/firstPartyData.html#segments-and-taxonomy | ||
.filter(data => [5, 6, 7].includes(data?.ext?.segtax)) | ||
.map(data => (Array.isArray(data?.segment) ? data.segment : []).map(seg => seg.id)) | ||
.flat(1), |
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.
Same here
557619d
to
f95ef52
Compare
f95ef52
to
20e8c8d
Compare
20e8c8d
to
4627162
Compare
…rebid#11775) * Azerion Edge RTD Module: Initial release ### Type of change [x] Feature: New RTD Submodule ### Description of change Adds new Azerion Edge RTD module. Maintainer: azerion.com Contact: @garciapuig @mserrate @gguridi * Azerion Edge RTD Module: Initial release. Typo * AzerionEdge RTD Module: Documentation: Required parameters Type of change: Documentation/Feature Description of change: Specifying new required parameters on documentation. Updating examples. * AzerionEdge RTD Module: Compatible with GDPR/USP Privacy Modules (#14) - Added GDPR validation. - We validate against ImproveDigital vendor ID consent and several purposes. - We don't load edge script, nor process the existing data, if consent wasn't given. - Adding support for USP consent. * AzerionEdgeRTDModule: Passing the consent to the script execution (#17) Adding GVL ID to the module configuration Passing the consent to the script execution instead of handling it in prebid (#16) --------- Co-authored-by: Gorka Guridi <gorka.guridi@azerion.com> --------- Co-authored-by: Gorka Guridi <gorka.guridi@gmail.com>
No description provided.