Skip to content

Commit

Permalink
Fix broken PubProvidedId example (#3114)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Chowla authored Jul 21, 2021
1 parent e45bad1 commit f5f473b
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -1428,27 +1428,27 @@ Or, the eids values can be passed directly into the `setConfig` call:
pbjs.setConfig({
userSync: {
userIds: [{
name: "example.com",
name: "pubProvidedId",
params: {
eids: [{
source: "domain.com",
uids:[{
id: "value read from cookie or local storage",
atype: 1,
ext: {
stype: "ppuid"
}

}]
},{
uids: [{
id: "value read from cookie or local storage",
atype: 1,
ext: {
stype: "ppuid"
}

}]
}, {
source: "3rdpartyprovided.com",
uids:[{
id: "value read from cookie or local storage",
atype: 3,
ext: {
stype: "dmp"
}
}]
uids: [{
id: "value read from cookie or local storage",
atype: 3,
ext: {
stype: "dmp"
}
}]
}]
}
}]
Expand Down

0 comments on commit f5f473b

Please sign in to comment.