This is the guide to the Javascript SDK of Adjust™ for web sites or web apps. You can read more about Adjust™ at adjust.com.
Read this in other languages: English, 中文, 日本語, 한국어.
- Example apps
- Installation
- Initialization
- Event tracking
- Global callback parameters
- Global partner parameters
- Offline/Online mode
- Stop/Restart SDK
- GDPR Forget Me
- Marketing Opt-out
- Data residency
- License
You can check how our SDK can be used in the web app by checking example app in this repository.
This SDK can be used to track installs, sessions and events. Simply add the Adjust Web SDK to your web app.
To install the SDK use npm:
npm install @adjustcom/adjust-web-sdk --save
In order to initialize the Adjust Web SDK you must call the Adjust.initSdk
method as soon as possible:
Adjust.initSdk({
appToken: 'YOUR_APP_TOKEN',
environment: 'production'
});
Here is the full list of available parameters for the initSdk
method:
appToken string
Initialization method requires this parameter, so make sure to provide valid app token
environment string
This param is also mandatory. Available options are production
or sandbox
. Use sandbox
in case you are testing the SDK locally with your web app
attributionCallback function
This param accepts function, and it's a callback function for the attribution change. Two arguments are provided to the callback, first one is an internal event name (can be ignored), and the other one is the object which holds information about the changed attribution
Example:
Adjust.initSdk({
// ... other params go here, including mandatory ones
attributionCallback: function (e, attribution) {
// e: internal event name, can be ignored
// attribution: details about the changed attribution
}
});
defaultTracker string
By default, users who are not attributed to any campaigns will be attributed to the Organic tracker of the app. If you want to overwrite this behaviour and attributed this type of traffic under a different tracker, you can use this method to set a different default tracker.
customUrl string
By default all requests go to adjust's endpoints. You are able to redirect all requests to your custom endpoint
eventDeduplicationListLimit number
By default this param is set to 10
. It is possible to override this limit but make sure that it is a positive number and not too big. This will cache last n
deduplication ids (defined by this param) and use them to deduplicate events with repeating ids
logLevel string
By default this param is set to error
. Possible values are none
, error
, warning
, info
, verbose
. We highly recommend that you use verbose
when testing in order to see precise logs and to make sure integration is done properly.
Here are more details about each log level:
verbose
- will print detailed messages in case of certain actionsinfo
- will print only basic info messages, warnings and errorswarning
- will print only warning and error messageserror
- will print only error messagenone
- won't print anything
logOutput string
It's possible to define html container where you want to see your logs. This is useful when testing on mobile devices and when you want to see logs directly on the screen (recommended only for testing)
namespace string
A custom namespace for SDK data storage. If there are multiple applications on the same domain to allow SDK distinguish storages and don't mix the data up each application should use it's own namespace.
Please note it's possible to set custom namespace for existing storage with default name, all data will be preserved and moved to the custom namespace. Once custom namespace is set it's not possible to rename it without data loss.
externalDeviceId string
Note If you want to use external device IDs, please contact your Adjust representative. They will talk you through the best approach for your use case.
An external device identifier is a custom value that you can assign to a device or user. They can help you to recognize users across sessions and platforms. They can also help you to deduplicate installs by user so that a user isn't counted as multiple new installs.
You can also use an external device ID as a custom identifier for a device. This can be useful if you use these identifiers elsewhere and want to keep continuity.
Check out our external device identifiers article for more information.
Note This setting requires Adjust SDK v5.1.0 or later.
Adjust.initSdk({
// other initialisation options go here
externalDeviceId: 'YOUR_EXTERNAL_DEVICE_ID', // optional
});
Important: You need to make sure this ID is unique to the user or device depending on your use-case. Using the same ID across different users or devices could lead to duplicated data. Talk to your Adjust representative for more information.
If you want to use the external device ID in your business analytics, you can pass it as a callback parameter. See the section on global callback parameters for more information.
You can use adjust to track events. Lets say you want to track every tap on a particular button. You would create a new event token in your dashboard, which has an associated event token - looking something like abc123
. In order to track this event from your web app, you should do following:
Adjust.trackEvent({
eventToken: 'YOUR_EVENT_TOKEN'
})
Make sure to track event only after you initialize the Adjust SDK.
Here is the full list of available parameters for the trackEvent
method:
eventToken string
Track event method requires this parameter, make sure to provide valid event token
revenue number
In case you want to attach revenue to an event (for example you would like to track some purchase that happened inside your web app) then you need to provide positive value for this param. It's also mandatory to provide currency
param described in the next block
currency string
You need to provide this param if you want to track revenue event. Please use valid currency code like EUR
, USD
and so on
Example:
Adjust.trackEvent({
// ... other params go here, including mandatory ones
revenue: 110,
currency: 'EUR'
})
When you set a currency token, adjust will automatically convert the incoming revenues into a reporting revenue of your choice. Read more about currency conversion here.
You can read more about revenue and event tracking in the event tracking guide.
callbackParams array
You can register a callback URL for your events in your dashboard. We will send a GET request to that URL whenever the event is tracked. You can add callback parameters to that event by adding callbackParams
parameter to the map object passed to trackEvent
method. We will then append these parameters to your callback URL.
For example, suppose you have registered the URL https://www.mydomain.com/callback
then track an event like this:
Adjust.trackEvent({
// ... other params go here, including mandatory ones
callbackParams: [
{key: 'key', value: 'value'},
{key: 'foo', value: 'bar'}
]
})
In that case we would track the event and send a request to:
https://www.mydomain.com/callback?key=value&foo=bar
Please note that we don't store any of your custom parameters, but only append them to your callbacks, thus without a callback they will not be saved nor sent to you.
You can read more about using URL callbacks, including a full list of available values, in our callbacks guide.
partnerParams array
You can also add parameters to be transmitted to network partners, which have been activated in your Adjust dashboard.
This works similarly to the callback parameters mentioned above, but can be added by adding partnerParams
parameter to the map object passed to trackEvent
method:
Adjust.trackEvent({
// ... other params go here, including mandatory ones
partnerParams: [
{key: 'key', value: 'value'},
{key: 'foo', value: 'bar'}
]
})
You can read more about special partners and these integrations in our guide to special partners.
deduplicationId string
It's possible to provide event deduplication id in order to avoid tracking duplicated events. Deduplication list limit is set in initialization configuration as described above
Sometimes you want to redirect user to an external page and track this redirect as an event. For this case to avoid redirect to happen earlier than the event was actually tracked trackEvent
method returns a Promise
which is fulfilled after the SDK has sent the event and received a response from the backend and rejected when some internal error happen.
Important It might take pretty much time until this promise is settled so it's recommended to use a timeout.
Please note that due to internal requests queue the event wouldn't be lost even if it timed out or an error happened, the SDK will preserve the event to the next time it's loaded and try to send it again.
Example:
Promise
.race([
Adjust.trackEvent({
eventToken: 'YOUR_EVENT_TOKEN',
// ... other event parameters
}),
new Promise((resolve, reject) => {
setTimeout(() => reject('Timed out'), 2000)
})
])
.catch(error => {
// ...
})
.then(() => {
// ... perform redirect, for example
window.location.href = "https://www.example.org/"
});
There are several methods available for global callback parameters like adding, removing and clearing them. Here is the list of each available method:
It's possible to add global callback parameters, which will be appended automatically to each session and event request. Note that callback params passed directly to trackEvent
method will override existing global callback params. This method accepts an array
is the same format as for callbackParams
parameter from trackEvent
method
Example:
Adjust.addGlobalCallbackParameters([
{key: 'key1', value: 'value1'},
{key: 'key2', value: 'value2'}
]);
To remove particular callback parameter use this method by providing the key of a global callback param which needs to be removed
Example:
Adjust.removeGlobalCallbackParameter('key1');
In order to clear all global callback parameters simply call this method
Example:
Adjust.clearGlobalCallbackParameters();
It's possible to add, remove and clear global partner parameters in the similar way as for global callback parameters. Here is the list of each available method:
It's possible to add global partner parameters, which will be appended automatically to each session and event request. Note that partner params passed directly to trackEvent
method will override existing global partner params. This method accepts an array
is the same format as for partnerParams
parameter from trackEvent
method
Example:
Adjust.addGlobalPartnerParameters([
{key: 'key1', value: 'value1'},
{key: 'key2', value: 'value2'}
]);
To remove particular partner parameter use this method by providing the key of a global partner param which needs to be removed
Example:
Adjust.removeGlobalPartnerParameter('key1');
In order to clear all global partner parameters simply call this method
Example:
Adjust.clearGlobalPartnerParameters();
By default when initiated Adjust SDK is always in online mode. But you can put it into offline mode if you want to pause all network requests such as tracking events and sessions (although initial session will ignore this mode and will be sent anyway). There are two methods available to swich on and off the offline mode:
This method will put the Adjust SDK into offline mode
Example:
Adjust.switchToOfflineMode();
This method will put the Adjust SDK back to online mode
Adjust.switchBackToOnlineMode();
It's possible to completely stop the SDK from running in certain situations. This means that SDK will stop tracking sessions and events and in general will stop working entirely. But it's possible to restart it after some time. Here are available methods for this functionality:
This will stop running Adjust SDK
Example:
Adjust.stop();
This will restart Adjust SDK
Example:
Adjust.restart();
There is functionality available to GDPR Forget particular user. This will notify our backend behind the scene and will stop Adjust SDK from running. There is one method available for this:
This method will stop Adjust SDK from running and will notify adjust backend that user wants to be GDPR forgotten. Once this method is run it's not possible to restart Adjust SDK anymore.
Example:
Adjust.gdprForgetMe();
You can find more details here
There is functionality for the Marketing Opt-out, which is disabling third-party sharing ability. This will notify our backed in the same manner as it does for GDPR Forget me.
There is one method available for this:
Example:
Adjust.disableThirdPartySharing();
To identify unique web users in Adjust, Web SDK generates an ID known as web_uuid
whenever it tracks first session. The ID is created per subdomain and per browser.
The identifier follows the Universally Unique Identifier (UUID) format.
To get web_uuid
use the following method:
Example:
const webUUID = Adjust.getWebUUID();
You can access your user's current attribution information by using the following method:
Example:
const attribution = Adjust.getAttribution();
Note Current attribution information is only available after our backend tracks the app install and triggers the attribution callback. It is not possible to access a user's attribution value before the SDK has been initialized and the attribution callback has been triggered.
You may want to set referrer
to trigger sdk_click
manually.
To set referrer
use the following method:
Example:
Adjust.setReferrer("adjust_external_click_id%3DEXTERNAL_CLICK_ID");
Please note that referrer
should be properly URL-encoded.
Important For proper attribution this method should be called as close as possible to SDK initialization.
The data residency feature allows you to choose the country in which Adjust stores your data. This is useful if you are operating in a country with strict privacy requirements. When you set up data residency, Adjust stores your data in a data center located in the region your have chosen.
To set your country of data residency, pass a dataResidency
argument in your initSdk
call.
Adjust.initSdk({
"appToken": "YOUR_APP_TOKEN",
"environment": "production",
"logLevel": "verbose",
"dataResidency": "EU"
})
The following values are accepted:
EU
– sets the data residency region to the EU.TR
– sets the data residency region to Turkey.US
– sets the data residency region to the USA.
The Adjust SDK is licensed under the MIT License.
Copyright (c) 2020 Adjust GmbH, https://www.adjust.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.