Hi all,
I'm trying to migrate app mesurement to websdk but facing a question about how set a first landing page value to prop1 (report for hit based).
Due to the s variable is not able to use anymore in websdk.
Do you have any idea?
Thank you.
Lemen
Views
Replies
Total Likes
How did you use to do it with AppMeasurement?
Views
Replies
Total Likes
Hi yuhuisg,
I'm using the plugin - getVisitStart and set the pagename if the visit is equal 1. If this function is not available, I have no idea about how to capture the pagename to prop1. Core - Landing page is able to set the first landing URL, but it will be send to server every pageview call. Just wonder that how to set and send it when the first visit + first hit. Thank you!
Views
Replies
Total Likes
Unfortunately, I don't think there's an equivalent of this plugin for WebSDK. But maybe you can replicate it on your own.
Basically, every time the plugin is called, it does these 3 steps:
The key phrase above is "every time". That's right, with every hit, it extends the cookie's expiry to be 30 minutes from now -- because that is Adobe Analytics' definition of a visit: a series of hits with no break of more than 30 minutes.
So, if you can replicate the above logic, then you should be able to use the returned "1" or "0" value to set your prop1. You could do this in 1 of 2 ways:
Hope that works. I haven't tried it myself, so please test this extensively on your own to validate.
Thank you for this information.
Views
Replies
Total Likes
If you really need to put first page-first visit into a variable, setting some launch rules is probably your best approach. You can use a processing rule to set the first page of a visit into a variable, but I'm pretty sure visit number is not available in processing rules (though that would be nice to have).
On the other hand, if you just need to identify first page-first visit pages, you can use a segment. Something like this should work:
Page Depth uses a counter evar configuration to count how many pages into a visit the page view occurred. That configuration looks like this:
Hi RobertBlakeley ,
Thank you for your reply. I'm also trying to use the Core - Session Count Page View, but seem the default session is over 30min. If it is work, I can use this count for First Visit First Page capture.
Thank you.
Regards,
Lemen
Views
Replies
Total Likes
Similar to @RobertBlakeley solution, Adobe should be tracking both Visit Number and Hit Depth automatically. So you should be able to build a segment to get a user's first ever landing page by using:
If you only care about the first page of a Visit, which I believe that plugin would return, then you should just be able to use:
At least this solution shouldn't require using creating a new counter.
Views
Replies
Total Likes