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

OpenX Bid Adapter: Handle new user Ids #7642

Merged
merged 1 commit into from
Nov 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion modules/openxBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ export const USER_ID_CODE_TO_QUERY_ARG = {
novatiq: 'novatiqid', // Novatiq ID
mwOpenLinkId: 'mwopenlinkid', // MediaWallah OpenLink ID
dapId: 'dapid', // Akamai DAP ID
amxId: 'amxid' // AMX RTB ID
amxId: 'amxid', // AMX RTB ID
kpuid: 'kpuid', // Kinesso ID
publinkId: 'publinkid', // Publisher Link
naveggId: 'naveggid', // Navegg ID
imuid: 'imuid', // IM-UID by Intimate Merger
adtelligentId: 'adtelligentid' // Adtelligent ID
};

export const spec = {
Expand Down
5 changes: 5 additions & 0 deletions test/spec/modules/openxBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,11 @@ describe('OpenxAdapter', function () {
mwOpenLinkId: '1111-mwopenlinkid',
dapId: '1111-dapId',
amxId: '1111-amxid',
kpuid: '1111-kpuid',
publinkId: '1111-publinkid',
naveggId: '1111-naveggid',
imuid: '1111-imuid',
adtelligentId: '1111-adtelligentid'
};

// generates the same set of tests for each id provider
Expand Down