-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the 33across hem optional parameter to the documentation
- Loading branch information
1 parent
9aaf096
commit b0f0b3e
Showing
1 changed file
with
6 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ The following configuration parameters are available: | |
| name | Required | String | The name of this sub-module | `"33acrossId"` | | ||
| params ||| Details for the sub-module initialization || | ||
| params.pid | Required | String | Partner ID (PID) | Please reach out to [[email protected]](mailto:[email protected]) and request your PID | | ||
| params.hem | Optional | String | Hashed email address in sha256 format | `"ba4235544d6c91865fb07.."` | | ||
| params.storeFpid | Optional | Boolean | Indicates whether a supplemental first-party ID may be stored to improve addressability | `true` (default) or `false` | | ||
| params.storeTpid | Optional | Boolean | Indicates whether a supplemental third-party ID may be stored to improve addressability | `true` (default) or `false` | | ||
| storage ||||| | ||
|
@@ -46,8 +47,7 @@ pbjs.setConfig({ | |
userIds: [{ | ||
name: "33acrossId", | ||
params: { | ||
pid: "0010b00002GYU4eBAH", // Example ID | ||
storeFpid: true | ||
pid: "0010b00002GYU4eBAH" // Example ID | ||
}, | ||
storage: { | ||
name: "33acrossId", | ||
|
@@ -59,3 +59,7 @@ pbjs.setConfig({ | |
} | ||
}); | ||
``` | ||
|
||
## HEM Collection | ||
|
||
33Across ID System supports user's hashed emails (HEMs). HEMs could be collected from 3 different sources in following priority order: `hem` configuration parameter, global `_33across.hem.sha256` field or from storage (cookie or local storage). |