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

ATS-identityLinkIdSystem - add explanation for new use3P config parameter #2853

Merged
merged 3 commits into from
Apr 13, 2021
Merged
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
8 changes: 5 additions & 3 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ The IdentityLink privacy policy is at [https://liveramp.com/privacy/service-priv
| name | Required | String | `"identityLink"` | `"identityLink"` |
| params | Required for Id Link | Object | Details for identityLink initialization. | |
| params.pid | This parameter is required for IdentityLink | String | This is the placementId, value needed for obtaining user’s IdentityLink envelope

| params.use3P | This parameter is not required for IdentityLink | Boolean | Property for choosing should 3P Liveramp envelope endpoint be fired or not, in order to get IdentityLink envelope

#### IdentityLink Examples

Expand All @@ -513,7 +513,8 @@ pbjs.setConfig({
userIds: [{
name: "identityLink",
params: {
pid: '999' // Set your real identityLink placement ID here
pid: '999', // Set your real identityLink placement ID here
// use3P: true/false // If you want to use 3P endpoint to retrieve the envelope. If you do not set this property to true, 3P endpoint will not be fired. By default this property is undefined and 3P request are not fired.
},
storage: {
type: "cookie",
Expand All @@ -534,7 +535,8 @@ pbjs.setConfig({
userIds: [{
name: "identityLink",
params: {
pid: '999' // Set your real identityLink placement ID here
pid: '999', // Set your real identityLink placement ID here
// use3P: true/false // If you want to use 3P endpoint to retrieve the envelope. If you do not set this property to true, 3P endpoint will not be fired. By default this property is undefined and 3P request are not fired.
},
storage: {
type: "html5",
Expand Down