Skip to content

Commit

Permalink
OpenX Bid adapter: Handle new user Ids (prebid#7642)
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-sayson authored and Chris Pabst committed Jan 10, 2022
1 parent b506c0c commit 3b68698
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
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

0 comments on commit 3b68698

Please sign in to comment.