forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Eids liveintent ext fix (prebid#4944)
* added support for pubcommon, digitrust, id5id * added support for IdentityLink * changed the source for id5 * added unit test cases * changed source param for identityLink * fixing liveintent-segments added separate functions in config for eid.ext and uid.ext liventent segments should have been in eid.ext not in eid.uids[].ext * added example of generated eids array * formating * commeneted a console log; avoiding lint error * fixed breaking test-cases
- Loading branch information
1 parent
b6b4fbe
commit 625b325
Showing
4 changed files
with
114 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
## Example of eids array generated by UserId Module. | ||
``` | ||
userIdAsEids = [ | ||
{ | ||
source: 'pubcid.org', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'adserver.org', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1, | ||
ext: { | ||
rtiPartner: 'TDID' | ||
} | ||
}] | ||
}, | ||
{ | ||
source: 'id5-sync.com', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'parrable.com', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'liveramp.com', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'liveintent.com', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}], | ||
ext: { | ||
segments: ['s1', 's2'] | ||
} | ||
}, | ||
{ | ||
source: 'britepool.com', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'digitru.st', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'criteo.com', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
}, | ||
{ | ||
source: 'netid.de', | ||
uids: [{ | ||
id: 'some-random-id-value', | ||
atype: 1 | ||
}] | ||
} | ||
] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters