Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.
I have this issue, a customer click a link on the mobile app to an external web site and during the click the customer is identified separately. Which method shall i use to see the click from mobile app to web site as only 1 customer?
@Luca_Lattarini For resolving this kindly append the visitor ID on the destination url which is opening in browser using below method. //Code on Domain A var destinationURL = "www.destination.com";
//Call the ID service var visitor = Visitor.getInstance(...);
//Append visitor IDs to the destination URL var destinationURLWithVisitorIDs = visitor.appendVisitorIDsTo(destinationURL); //Result of appendVisitorIDsTo includes destination URL, Experience Cloud ID (MCMID), and Analytics ID (MCAID) "www.destination.com?adobe_mc=MCMID=1234|MCAID=5678" //Redirect to the destination