Skip to content

Commit

Permalink
Merge pull request #3 from Parrable/PBID-2
Browse files Browse the repository at this point in the history
PBID-2 Add parrable module to userId integration page
  • Loading branch information
eyas-ranjous authored Aug 7, 2019
2 parents 07c44bd + c1e7a48 commit be2dafb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
19 changes: 14 additions & 5 deletions integrationExamples/gpt/userId_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
type: "html5",
name: "unifiedid",
expires: 30
},
}
}, {
name: "id5Id",
params: {
Expand All @@ -149,15 +149,14 @@
type: "cookie",
name: "id5id",
expires: 90
},

}
}, {
name: "pubCommonId",
storage: {
type: "cookie",
name: "pubcid",
expires: 365
},
}
// value: {
// foo: '9879878907987',
// bar:'93939'
Expand All @@ -172,7 +171,17 @@
name: 'idl_env',
expires: 60
}
}],
},{
name: "parrableId",
params: {
partners: `['30182847-e426-4ff9-b2b5-9ca1324ea09b']` // change to the Parrable Partner Client ID(s) you received from the Parrable Partners you are using
},
storage: {
type: "cookie",
name: "_parrable_eid", // create a cookie with this name
expires: 365 // cookie can last for a year
}
}],
syncDelay: 5000
}
});
Expand Down
10 changes: 10 additions & 0 deletions modules/userId/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ pbjs.setConfig({
name: 'idl_env',
expires: 60
}
}, {
name: 'parrableId',
params: {
partners: [ "30182847-e426-4ff9-b2b5-9ca1324ea09b" ] // Replace the list contents with the Parrable Partner Client IDs for Parrable-aware bid adapters in use
},
storage: {
type: 'cookie',
name: '_parrable_eid',
expires: 365
}
}],
syncDelay: 5000
}
Expand Down

0 comments on commit be2dafb

Please sign in to comment.