How to identify/send authenticated users to the application?

You are here:
Estimated reading time: < 1 min

By default we identify user who log into their accounts automatically.

However this is not possible all the time, mostly because of credentials saved in the browser, or usage of extensions like LastPass or 1password.

To circumvent this potential miss of real users who are logged in into their account you need to add the following code, to every page you have access to user email address:

<script>
window._vteq = window._vteq || [];
window._vteq.push(["setVar","VTuser", "[email protected]"]);
</script>

Identification using VTuser variable can only be done by email address for the moment.

Was this article helpful?
Dislike 0
Views: 9