Difference between revisions of "ATC/Current/AdminGuide/Tracking snippet"
DannaShirley (talk | contribs) (Published) |
DannaShirley (talk | contribs) (Published) |
||
Line 136: | Line 136: | ||
|fullwidth=Yes | |fullwidth=Yes | ||
|structuredtextwide====Deployment notes=== | |structuredtextwide====Deployment notes=== | ||
− | + | {{NoteFormat|The {{MINTYDOCSPRODUCT}} tracking snippet loads JavaScript asynchronously without slowing down page loading.}} | |
* Deploy the {{MINTYDOCSPRODUCT}} tracking snippet on the main page of the website you want to track. | * Deploy the {{MINTYDOCSPRODUCT}} tracking snippet on the main page of the website you want to track. | ||
* Remove the script tags. | * Remove the script tags. | ||
Line 142: | Line 142: | ||
* Paste the snippet in the head section. | * Paste the snippet in the head section. | ||
* Do not deploy the tracking snippet in an iframe. | * Do not deploy the tracking snippet in an iframe. | ||
+ | For more details about how the tracking snippet works, see {{Link-SomewhereInThisVersion|manual=SDK|topic=About_the_tracking_snippet}}. | ||
|Status=No | |Status=No | ||
}}{{Section | }}{{Section |
Revision as of 11:40, October 18, 2019
Contents
Learn how to enable visitor tracking on your website.
Prerequisites
- Configure the following permissions in PureCloud:
- Journey > Settings > Edit, or View permissions
Overview
Before you begin
Before you deploy the Genesys Predictive Engagement tracking snippet be sure you understand:
- How to deploy the tracking snippet to be compliant with General Data Protection Regulation (GDPR).
Copy the snippet
- Click Admin.
- Under Altocloud, click Tracking Snippet.
- To determine which snippet to use:
- Read about the types of snippets.
- Review the snippet recommendations.
- Read about the types of snippets.
- Use a text editor to copy the snippet.
Since you are logged in to PureCloud, the Genesys Predictive Engagement tracking snippet already contains your organization ID and Genesys region.
- Use a text editor to ensure a clean copy and paste. Other programs may insert or replace characters in the tracking snippet.
Types of tracking snippets
- Website snippet
- SPA snippet
Website snippet
The Website snippet provides tracking support to traditional webpages that contain little or nodynamic content. Traditional websites load a new HTML page whenever the user navigates to a different URL. To provide tracking support to traditional webpages, the Website snippet calls ac('pageview') each time the a new page is loaded by the web browser.
<script>
(function(a,t,c,l,o,u,d){a['_genesysJourneySdk']=o;a[o]=a[o]||function(){
(a[o].q=a[o].q||[]).push(arguments)},a[o].l=1*new Date();u=t.createElement(c),
d=t.getElementsByTagName(c)[0];u.async=1;u.src=l;u.charset='utf-8';d.parentNode.insertBefore(u,d)
})(window, document, 'script', 'https://example.com, 'ac');
ac('init', 'a061a3fe-7a80-4b50-9d3b-df88c0f9efad', { region: 'use1' });
ac('pageview');
</script>
SPA snippet
The SPA snippet can track activity on Single Page Applications (SPAs). SPAs load dynamic content on demand without requiring a hard reload of the HTML page. The SPA snippet can also track when users click relative links, which the Website snippet does not. The SPA snippet works on SPAs such as Angular, React, Vue.js, and so on. For more information about the additional tracking options available with the SPA snippet, see [[ATC/Current/SDK/autoTrackURLChange|]].
<script>
(function(a,t,c,l,o,u,d){a['_genesysJourneySdk']=o;a[o]=a[o]||function(){
(a[o].q=a[o].q||[]).push(arguments)},a[o].l=1*new Date();u=t.createElement(c),
d=t.getElementsByTagName(c)[0];u.async=1;u.src=l;u.charset='utf-8';d.parentNode.insertBefore(u,d)
})(window, document, 'script', 'https://apps.inindca.com/journey/sdk/js/web/v1/ac.js', 'ac');
ac('init', 'a061a3fe-7a80-4b50-9d3b-df88c0f9efad', { environment: 'dev' });
ac('load', 'autotrackUrlChange');
</script>
Snippet recommendations
If you have this type of website... | Use this snippet... |
Not sure | SPA |
Mix of traditional and SPA pages | SPA |
Traditional pages only | Website |
Customize how the snippet tracks activity
- If you need to refine how Genesys Predictive Engagement tracks activity on your website, see [[ATC/Current/AdminGuide/About_event_tracking|]].
- You can also customize the Genesys Predictive Engagement tracking snippet with functions from the Journey JavaScript SDK. For example:
Deploy the snippet with a tag manager
To easily deploy the Genesys Predictive Engagement tracking snippet, use your preferred tag manager. For example:
- [[ATC/Current/AdminGuide/Google_Tag_Manager|]]
- Adobe Launch
- Any other tag manager
Deployment notes
- Deploy the Genesys Predictive Engagement tracking snippet on the main page of the website you want to track.
- Remove the script tags.
- Paste the tracking snippet in the element of the website template page before the closing tag.
- Paste the snippet in the head section.
- Do not deploy the tracking snippet in an iframe.
For more details about how the tracking snippet works, see About the tracking snippet.
Verify that the snippet works
When the tracking snippet is properly executed and initialized:
- Use Live Now to verify that Genesys Predictive Engagement is tracking your website activity.
- You should see an update every 4-5 seconds.
Troubleshoot the snippet
If the tracking snippet does not work properly when you load it on your web pages, check the following things:
* Is the snippet on the correct page?
* Is the snippet correctly placed in the header?
* Are all of the parameters specified correctly?
* Are there any typos, missing characters, or extra white space?