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

Adobe Visitor ID in a default java variable?

Avatar

Level 1

Hi,

 

This is really bugging me as I'm sure recently somebody showed me a java variable and asked me to confirm the value it was returning was the adobe Visitor ID which it was and now I can't find it.

 

I'm well aware about to read the value in my rules and even retrieve using this function : Visitor.getInstance("orgid")._fields.MCMID but is anyone aware of a default JAVA variable the visitor ID can be read from by a 3rd party?

1 Accepted Solution

Avatar

Correct answer by
Level 10

You may want to use the following method to get the Experience Cloud ID

_satellite.getVisitorId().getMarketingCloudVisitorID();

 

 

 

View solution in original post

3 Replies

Avatar

Correct answer by
Level 10

You may want to use the following method to get the Experience Cloud ID

_satellite.getVisitorId().getMarketingCloudVisitorID();

 

 

 

Avatar

Level 1
Thanks for the suggestion Andrey, unfortuently for reasons I'm challenging I'm told by the 3rd party they can't read data returned from a function and that's why they asked me to add it to a variable. I was just wondering if there's one set by default before I set one.

Avatar

Level 10
I would set a new variable then. I'm curious to know why the 3rd party can read a JS variable but can't fire a JS method.