From 2bc73c14e808a9b7b495fb455c9c2a652229ab55 Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 2 Feb 2021 18:16:35 +0100 Subject: [PATCH 1/2] Update doc on timezones --- dev-docs/modules/userId.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-docs/modules/userId.md b/dev-docs/modules/userId.md index f1e8d06e97..30e70994be 100644 --- a/dev-docs/modules/userId.md +++ b/dev-docs/modules/userId.md @@ -831,6 +831,8 @@ The Parrable ID system enables a publisher to configure lists of **allowed** tim - An impression from a browser that matches any allowed timezone or timezone offset, but does not match a blocked timezone or timezone offset will engage in the Parrable ID syncronization process. - If a browser has a stored Parrable ID then it will not be filtered even if the browser is in a timezone or timezone offset that is blocked. +All configured timezones should follow the `TZ database name` column from the [IANA tz database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) + #### Parrable ID Examples {% highlight javascript %} @@ -840,6 +842,9 @@ pbjs.setConfig({ name: `'parrableId'`, params: { partner: `'30182847-e426-4ff9-b2b5-9ca1324ea09b'` // change to the Parrable Partner Client ID(s) you received from the Parrable Partners you are using + timezoneFilter: { + allowedZones: ['America/New_York', 'Europe/Madrid'] + } } }], syncDelay: 1000 @@ -847,6 +852,8 @@ pbjs.setConfig({ }); {% endhighlight %} + + ### PubCommon ID This module stores an unique user id in the first party domain and makes it accessible to all adapters. Similar to IDFA and AAID, this is a simple UUID that can be utilized to improve user matching, especially for iOS and MacOS browsers, and is compatible with ITP (Intelligent Tracking Prevention). It’s lightweight and self contained. Adapters that support Publisher Common ID will be able to pick up the user ID and return it for additional server-side cross device tracking. From 47f2629b19f564a7458e00d69c561efaab18dee3 Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 2 Feb 2021 18:19:33 +0100 Subject: [PATCH 2/2] Removed trailing eof --- dev-docs/modules/userId.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/dev-docs/modules/userId.md b/dev-docs/modules/userId.md index 30e70994be..7bff09e12c 100644 --- a/dev-docs/modules/userId.md +++ b/dev-docs/modules/userId.md @@ -852,8 +852,6 @@ pbjs.setConfig({ }); {% endhighlight %} - - ### PubCommon ID This module stores an unique user id in the first party domain and makes it accessible to all adapters. Similar to IDFA and AAID, this is a simple UUID that can be utilized to improve user matching, especially for iOS and MacOS browsers, and is compatible with ITP (Intelligent Tracking Prevention). It’s lightweight and self contained. Adapters that support Publisher Common ID will be able to pick up the user ID and return it for additional server-side cross device tracking.