Expand my Community achievements bar.

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.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

Customer Identification on Mobile App

Avatar

Level 9

Hello guys,

 

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

1 Reply

Avatar

Level 4

@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

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