Hey, I wrote a guide to this on my website.That being said, if you use the Marketing Cloud Visitor ID (Adobe Analytics ID) as the value for the `transactionID` column, your upload will work as expected. And you don't need to set anything for `s.visitorID`. This will be populated automatically by the...
I'm also having trouble getting this to work correctly. Following Adobe's guidelines, 'exp' should be set as POSIX time (seconds since the Epoch).That can be implemented in Javascript like this: const thirtyMinutesFromNowInSeconds = (Date.now() / 1000) + 30 * 60; However, changing the seconds affec...
Building on this, I think the 'expires_in' parameter returned in the access token response can be interpreted as milliseconds. At least I hope. Will be testing this.
You got it. I didn't realize it would disable the classification if it had been used in another rule set.Thank you for the help. After looking through, I found which rule set was using the variable and added my rule there.
I tried making a new classification rule but cannot activate it because my variable selections are greyed out.Has anyone experienced this or have an idea of what to check?
Due to clearVars()... I didn't think that through. Very strange... The change you made using s.tl(this...) is going to apply a delay to tracking the link. Your original configuration of s.tl(true...) was best.Where are you setting docLength? If this isn't working, it seems like there must be other c...
What happens if you define s and s.linkTrackVars outside of the for loop?Setting props to '' shouldn't be necessary as clearVars() will set them as undefined. And null isn't necessary as the fourth argument in s.tl(). These shouldn't affect anything, but simplifying your code could make it easier to...
That makes sense, thanks again. I made this change, and it appears to be working. eVar61 is now always set with the value of pageName.However, I do still have instances where there are more Visits than Page Views which makes me concerned that the pageName isn't being set on every s.t() call, but I d...
I really appreciate your response Andrey. That is a strange and unexpected behavior, but it makes sense.I created the report you suggested and found your hypothesis to hold water:What is confusing, is that this is occurring on hits that are set to use s.t() as well. I attach a "Hit Type" dimension t...
I have a Data Element set on every hit to generate Page Name. However, there are thousands of hits where it comes through as unspecified, and I don't understand why. Are data elements asynchronous, or is there something else going on?This is what I have set up:Processing rule that copies Page Name t...