Expand my Community achievements bar.

Customer Identification on Mobile App

Avatar

Community Advisor

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...