From 371d9412f71432ba502ccc665e9b0f16cd3654ea Mon Sep 17 00:00:00 2001 From: Florent Dancy Date: Fri, 13 Aug 2021 11:30:06 +0200 Subject: [PATCH] [Identity>SharedId] Fix Configuration table structure + typos --- identity/sharedid.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/identity/sharedid.md b/identity/sharedid.md index 9d8d502330..be8913d04a 100644 --- a/identity/sharedid.md +++ b/identity/sharedid.md @@ -197,15 +197,13 @@ If custom configurations are needed, define the pubcid_options object before inc Below are the available configuration options for the PubCID script. {: .table .table-bordered .table-striped } -| Parameter Name | Type | Description | Example | -| --- | --- | --- | --- | -| create | boolean | If true, then an id is created automatically by the script if it's missing. Default is true. If your server has a component that generates the id instead, then this should be set to false - | `TRUE` | -| expInterval | decimal | Expiration interval in minutes. Default is 525600, or 1 year - | `525600` | -| extend | boolean | If true, the the expiration time is automatically extended whenever the script is executed even if the id exists already. Default is true. If false, then the id expires from the time it was initially created. | For publisher server support only. If true, the publisher's server will create the (pubcid) cookie. Default is true. | `TRUE` | -| params.pixelUrl | Optional | String | For publisher server support only. Where to call out to for a server cookie. | `/wp-json/pubcid/v1/extend/` -| type | string | Type of storage. It's possible to specify one of the following: 'html5', 'cookie'. Default is 'html5' priority, aka local storage, and fall back to cookie if local storage is unavailable. | If true, the expiration time of the stored IDs will be refreshed during each page load. Default is false. | `cookie` | +| Parameter Name | Type | Description | | Example | +| --- | --- | --- | --- | --- | +| create | boolean | If true, then an id is created automatically by the script if it's missing. Default is true. If your server has a component that generates the id instead, then this should be set to false | | `true` | +| expInterval | decimal | Expiration interval in minutes. Default is 525600, or 1 year | | `525600` | +| extend | boolean | If true, the the expiration time is automatically extended whenever the script is executed even if the id exists already. Default is true. If false, then the id expires from the time it was initially created. | For publisher server support only. If true, the publisher's server will create the (pubcid) cookie. Default is true. | `true` | +| pixelUrl | string (optional) | For publisher server support only. Where to call out to for a server cookie. | | `/wp-json/pubcid/v1/extend/` +| type | string | Type of storage. It's possible to specify one of the following: 'html5', 'cookie'. Default is 'html5' priority, aka local storage, and fall back to cookie if local storage is unavailable. | If true, the expiration time of the stored IDs will be refreshed during each page load. Default is false. | `cookie` | #### Example Configurations