All Products
Search
Document Center

Quick Tracking:Introduce&Initialize the SDK

Last Updated:Jan 14, 2026

Required operations to use the web/h5 SDK. If any of the operations is missing, data is missing.

Basic SDK information

SDK name

Version number

The md5 value.

QuickTracking Web SDK

Latest version: 2.4.16

Update logs: Web SDK update logs

qt_web.umd.js:f40c85cb9605fecb9d34f4cc8114870c

qt_web.cjs.js:783771ec94dd51e09ef1a559c9958a33

qt_web.iife.js:22ed2d40621e12ff351e0f702195350d

qt_web.amd.js:8858cee234d5194d98cbce7ca2588046

Operating Instructions

1. Quick integration

In the QuickTracking background, a dedicated integration code is generated for each Web application, which can be integrated according to the guidance in the product.

Product Path

Quick Tracking "Home"-"management console", "management console", "organization list" function, organization list shows the currently created organization, find the organization to which the application belongs, click the "management application" function to jump to the "application management] page, click" integration "in the created application. image

Click the "Deintegrate" button to jump to the new page to obtain the dedicated integration code, click Next and press the guide to enter the "integration verification" to check whether the integration is successful. image

2 Integration code details

If the preceding page cannot be reached due to specific reasons, you need to view the document before you can integrate it. The specific integration code is as follows:

2.1 Parameter Preparation

appkey: obtained from the application list

Collection domain name: obtained in the "Management Console-Collect Information" module

SDK link: obtained in the management console-collect information module

2.2 SDK introduction&initialization

After you obtain the URL of the SDK integration code, add the integration code to the header tag of the page to ensure that the aplus_queue is not contaminated

(function(w, d, s, q) { 
 w[q] =w[q] || []; 
 var f=d.getElementsByTagName(s)[0],
 j=d.createElement(s); 
 j.async=true; 
 j.id='beacon-aplus'; 
 j.src='SDK link'; 
 f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'aplus_queue');

Set the domain name and appkey. The following code closely follows the SDK introduction code

// The appKey of the integrated application.
aplus_queue.push({ 
    action: 'aplus.setMetaInfo', 
    arguments: ['appKey', 'Your appkey'] 
});

// If it is deployed in a private cloud, you need to add a log domain name tracking point immediately after the JS section above.
// Generally, the domain name of the private cloud log server is similar to: xxx-web-api.xxx.com.cn. You can obtain the specific domain name in the "Collect information" module of the management console.
aplus_queue.push({ 
    action: 'aplus.setMetaInfo', 
    arguments: ['trackDomain', 'Your domain name']  
});

3 FAQ

3.1 How do I obtain the offline SDK?

After obtaining the SDK link in the management console-collect information module in the background of QuickTracking, click the SDK link and "ctrl + s" or "command + s" to download and save it.