Skip to content

Commit

Permalink
33Across User ID Module: Recommend "multiple storage types" option (#…
Browse files Browse the repository at this point in the history
…5345)

* User ID: Add "multiple storage types" option

* 33across UIM: Change recommended storage type
  • Loading branch information
carlosfelix authored Jun 16, 2024
1 parent afd3aee commit 6715dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-docs/modules/userid-submodules/33across.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The following configuration parameters are available:
| params.storeFpid | Optional | Boolean | Indicates whether a supplemental first-party ID may be stored to improve addressability | `false` (default) or `true` |
| storage |||||
| storage.name | Required | String | The name of the cookie or html5 local storage key | `"33acrossId"` (recommended) |
| storage.type | Required | String | This is where the 33across user ID will be stored | `"html5"` (recommended) or `"cookie"` |
| storage.type | Required | String | This is where the 33across user ID will be stored | `"cookie&html5"` (recommended) or `"html5"` or `"cookie"` |
| storage.expires | Strongly Recommended | Number | How long (in days) the user ID information will be stored | `30` (recommended) |
| storage.refreshInSeconds | Strongly Recommended | Number | How many seconds until the ID is refreshed | `8 * 3600` (recommended) |

Expand All @@ -46,7 +46,7 @@ pbjs.setConfig({
},
storage: {
name: "33acrossId",
type: "html5",
type: "cookie&html5",
expires: 30,
refreshInSeconds: 8 * 3600
}
Expand Down

0 comments on commit 6715dcd

Please sign in to comment.