Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Server Side Cross Domain Tracking

Avatar

Level 1

Hello,

 

I am currently investigating server side tracking, in particular, its ability to overcome Safari's ITP for cross domain tracking. Could HTTP response headers be used to set the MID on domain one and then retrieve it on domain two? There is a similar solution that can be used in Google Analytics using FPID and FPLC cookies but I cannot find any documentation for this specific server side tracking use case for Adobe Analytics/Launch.

 

For example, users on my website go through a quote process on domain A (quote.com) and then the application process is held on domain B (application.com). I currently use client-side cross domain tracking via link decoration to retrieve the MID from domain A on domain B to make sure the sessions are stitched. However, due to Safari's ITP, this cookie expires after 24 hours. Having done research on server side tracking and HTTP response header cookies in particular, it seems like a valid option to circumvent ITP's cookie restrictions and ensure the cookie doesn't expire but I'm not sure if this would work for cross-domain tracking. Could domain B obtain the MID from domain A? Would this prevent Safari's ITP from adding a 24 hour expiration date for the cookie containing the MID?

 

Any guidance/advice on this topic would be much appreciated.

 

Many thanks

Liam

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

We didn't tried to bypass ITP, as we are monitoring how much is the impact of ITP to our analytics by this process mentioned below:

https://experienceleague.adobe.com/docs/analytics/technotes/cookies/cookies.html?lang=en

 

But there are some articles on how to bypass Safari ITP

 

ways to bypass ITP:

https://mcgaw.io/blog/bypass-safari-itp-workaround/#gs.vbh6xx

Local-storage tracking is also blocked with ITP 2.3 update

https://impact.com/partnerships/browser-news-what-is-itp-2-3-and-google-chromes-latest-on-tracking/

More on ITP from Webkit:

https://webkit.org/tracking-prevention/#intelligent-tracking-prevention-itp

 

 

View solution in original post

5 Replies

Avatar

Correct answer by
Community Advisor

We didn't tried to bypass ITP, as we are monitoring how much is the impact of ITP to our analytics by this process mentioned below:

https://experienceleague.adobe.com/docs/analytics/technotes/cookies/cookies.html?lang=en

 

But there are some articles on how to bypass Safari ITP

 

ways to bypass ITP:

https://mcgaw.io/blog/bypass-safari-itp-workaround/#gs.vbh6xx

Local-storage tracking is also blocked with ITP 2.3 update

https://impact.com/partnerships/browser-news-what-is-itp-2-3-and-google-chromes-latest-on-tracking/

More on ITP from Webkit:

https://webkit.org/tracking-prevention/#intelligent-tracking-prevention-itp

 

 

Avatar

Community Advisor

From what I understand, Adobe's WebSDK sets server side cookies, but you can also set a client side cookie to help stitch properties together during your rollout.

 

 

Here is a recent session I hosted in User Groups that make WebSDK easier to implement (more like your current client side tracking)

https://www.youtube.com/watch?v=k7re4vxZBVk

 

There were also some good sessions at this year's summit:

https://business.adobe.com/summit/2023/sessions.html?Search=web+sdk

 

Here is documentation of the First Party Ids:

https://experienceleague.adobe.com/docs/experience-platform/edge/identity/first-party-device-ids.htm...

 

Avatar

Level 1

Hi Jennifer,

 

Thank you for your response. I have just read the documentation related to the FPIDs. This seems like a great way to limit the impact of browser cookie expiration policies. However, the question regarding cross domain tracking still remains. Do you know if it is possible for the Edge Network to retrieve the FPID from the server when a user navigates to our application journey, which sits on a different domain to our quote journey? Would it require the use of a query string parameter?

 

Thanks

Liam

Avatar

Community Advisor

Do you have analytics configured on both domains (quote.com and application.com)?  Are both set up with first party tracking servers (stats.quote.com and stats.application.com)?

 

Because both of these should be connected to your Organization ID, they should be able to identify the same user ID (since the whole concept of the Cloud Ids is to be able to identify users across all the websites in your network)... but that said, the Edge server is all new, and technology is constantly changing (and Safari seems determined to cause havoc with everything)... 

 

So it can't hurt to use something like appendVisitorIDsTo in your process to be safe:

https://experienceleague.adobe.com/docs/id-service/using/id-service-api/methods/appendvisitorid.html...

 

I assume this should still work with the Edge server implementation.... 

Avatar

Level 1

Yes analytics is configured on both domains. However, we currently need to use link decoration in order for the Cloud IDs to be recognised as one journey when users move from domain A to domain B so although they are part of the same organisation ID, they still require link decoration to be recognised as the same website. We haven't implemented any server side tracking as of yet as we are looking at how it could help to circumvent the ITP 2.3. 

 

The main question for me is, if we use server side tracking and make use of the FPID, would this work with cross domain tracking? As if we set the FPID in the HTTP response header, there is no way for this to get read by JavaScript on the browser so how would domain B read the value? If we use the appendVisitorID method, which we already use for client-side tracking, would that still be classed as a client-side cookie and therefore be subject to Safari's ITP 2.3?

 

Google Analytics server-side allows users to set the FPID and then uses the FPLC, which is a cross-domain linker cookie hashed from the FPID cookie that is appended to the URL, which allows domain B to read the FPID cookie and link the two sessions without ITP being able to set expiration dates on it.  Does Adobe have anything similar?

 

Thank you for your help with this!

Liam